Switch back from python:3.6-slim-stretch to python:3.6

Turns out slim-stretch doesn't include gcc which means it can't build various
Sanic dependencies. So `datasette publish now ...` was broken.

Fixes #310
This commit is contained in:
Simon Willison 2018-06-16 09:28:55 -07:00
commit d0a578c0fc
No known key found for this signature in database
GPG key ID: 17E2DEA2588B7F52

View file

@ -265,7 +265,7 @@ def make_dockerfile(files, metadata_file, extra_options, branch, template_dir, p
install = ['datasette'] + list(install)
return '''
FROM python:3.6-slim-stretch
FROM python:3.6
COPY . /app
WORKDIR /app
{spatialite_extras}