From 7de81df3e5fb73eec0c86d0c5f71d67e3eec8a19 Mon Sep 17 00:00:00 2001 From: Thomas Sileo Date: Wed, 16 Oct 2019 23:49:17 +0200 Subject: [PATCH] Lock to Python 3.7 Everything is broken with Python3.8 :scream_cat: --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ec0b571..ce2d647 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3 +FROM python:3.7 COPY requirements.txt /app/requirements.txt WORKDIR /app RUN pip install -r requirements.txt