Install python3-dev rothar than python-dev

This commit is contained in:
Simon Willison 2017-11-17 06:18:49 -08:00
commit f3445e2d13

View file

@ -2,7 +2,7 @@ FROM python:3.6-slim-stretch as build
# Setup build dependencies
RUN apt update
RUN apt install -y python-dev gcc libsqlite3-mod-spatialite
RUN apt install -y python3-dev gcc libsqlite3-mod-spatialite
# Add local code to the image instead of fetching from pypi.
ADD . /datasette