From d06aa6cb139f652ca164fc329013a08471943317 Mon Sep 17 00:00:00 2001 From: winkidney Date: Mon, 27 Aug 2018 01:00:23 -0700 Subject: [PATCH] Fix: python3 will install python 3.7 and cause a syntax error --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 84f11d8..58e7ac2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3 +FROM python:3.6 ENV PYTHONUNBUFFERED 1 WORKDIR /app