From 6109c90d0606f7a81c4e590eb88eca5e8e481311 Mon Sep 17 00:00:00 2001 From: nikitastykov Date: Wed, 8 Dec 2021 18:55:58 +0000 Subject: [PATCH] Changed the python version to the supported and tested one. Removed extra requirements.txt installation. --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 55bc0d1..fa0b87a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,9 @@ -FROM python:alpine +FROM python:alpine3.4 RUN apk add --no-cache gettext WORKDIR /app/ COPY requirements.txt . -RUN pip install -r requirements.txt COPY . .