From db9b3a445d5f29d9965c1ac74cebc146e80b3c4f Mon Sep 17 00:00:00 2001 From: Chuan-Zheng Lee Date: Sat, 1 Jan 2022 18:52:26 +1300 Subject: [PATCH] Update Python version in Docker to 3.8 This brings Docker into line with the version we specify for Heroku. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b9b0d94ca28..bf2c1ba68ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # run the application specified. docker-compose does not use this. # Grab a python image -FROM python:3.6 +FROM python:3.8 # Just needed for all things python (note this is setting an env variable) ENV PYTHONUNBUFFERED 1