From 7950105c278b140e6cb665c68b59df219870f9bc Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 13 Jan 2019 15:33:50 -0800 Subject: [PATCH] Python 3.7.2 as base for Docker image --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7001e799..08639e52 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.6-slim-stretch as build +FROM python:3.7.2-slim-stretch as build # Setup build dependencies RUN apt update \ @@ -27,7 +27,7 @@ COPY . /datasette RUN pip install /datasette -FROM python:3.6-slim-stretch +FROM python:3.7.2-slim-stretch # Copy python dependencies and spatialite libraries COPY --from=build /usr/local/lib/ /usr/local/lib/