From 30362efcc0f98da060270ea3b39f596b74945912 Mon Sep 17 00:00:00 2001 From: Untone Date: Thu, 29 Jul 2021 20:55:19 +0300 Subject: [PATCH] docker fix2 --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 10313ceb..b3e9d136 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,12 +2,11 @@ FROM python:3.8 EXPOSE 80 -RUN pip3 install pip +RUN /usr/local/bin/python -m pip install --upgrade pip WORKDIR /usr/src/app -COPY Pipfile ./ -COPY Pipfile.lock ./ +COPY requirements.txt ./ RUN set -ex && pip install -r requirements.txt