From 8449ff0d6ee2c819c53e4c4f41eab8d19e3088a2 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Sun, 1 Jul 2018 12:48:40 +0200 Subject: [PATCH] Switch to python:3 for the Docker base image In order to have the Python 3.7 upgrade automatically --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8a7a764..d5ac544 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.6 +FROM python:3.7 ADD . /app WORKDIR /app RUN pip install -r requirements.txt