mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
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:
parent
a3c380d9d7
commit
dd781e680c
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,7 @@ def make_dockerfile(files, metadata_file, extra_options, branch, template_dir, p
|
||||||
install = ['datasette'] + list(install)
|
install = ['datasette'] + list(install)
|
||||||
|
|
||||||
return '''
|
return '''
|
||||||
FROM python:3.6-slim-stretch
|
FROM python:3.6
|
||||||
COPY . /app
|
COPY . /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
{spatialite_extras}
|
{spatialite_extras}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue