Changed the python version to the supported and tested one.

Removed extra requirements.txt installation.
This commit is contained in:
nikitastykov 2021-12-08 18:55:58 +00:00
parent ff2e627967
commit 6109c90d06

View file

@ -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 . .