From d0a578c0fc07b9d9208cd9de981bdf7385a26c49 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sat, 16 Jun 2018 09:28:55 -0700 Subject: [PATCH] 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 --- datasette/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/datasette/utils.py b/datasette/utils.py index eb31475d..0b1f9f65 100644 --- a/datasette/utils.py +++ b/datasette/utils.py @@ -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}