From f3445e2d13e2c38bfbf75f35c2aa3e50df0040f1 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 17 Nov 2017 06:18:49 -0800 Subject: [PATCH] Install python3-dev rothar than python-dev --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0184d26..04c08d2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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