From d76add4d7f8a99853eb11c19b86f8fad6edf7517 Mon Sep 17 00:00:00 2001 From: Andrew Szeto Date: Thu, 7 Sep 2017 23:37:09 -0700 Subject: [PATCH] Change base Dockerfile from Python 2 to Python 3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As @kennethreitz likes to say: > The use of Python 3 is highly preferred over Python 2. Consider upgrading > your applications and infrastructure if you find yourself still using Python > 2 in production today. If you are using Python 3, congratulations — you are > indeed a person of excellent taste. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 495f414..35abff6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:2-alpine +FROM python:3-alpine ENV WEB_CONCURRENCY=4