From 73c220be975c899a3e8440ddcf5eba92e449edde Mon Sep 17 00:00:00 2001 From: Samuel Dion-Girardeau Date: Thu, 12 Jul 2018 21:27:32 -0400 Subject: [PATCH] Update Docker image to Python 3.7 (current latest) Also used the "slim" version, which will drastically reduce the image size. Base image sizes comparison: | python:3.7-slim | 143MB | | python:3.7 | 916MB | --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7ce87d9..a5347fb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.6 +FROM python:3.7-slim ENV APP_DIR=/usr/src/snappass