diff --git a/Dockerfile b/Dockerfile index 1bb28e4a..e5296732 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ FROM python:3.9 -RUN pip3 install pipenv +RUN pip3 install pip WORKDIR /usr/src/app COPY Pipfile ./ COPY Pipfile.lock ./ -RUN set -ex && pipenv install --deploy --system +RUN set -ex && pip install COPY . . \ No newline at end of file