fix dockerfile

This commit is contained in:
Untone 2021-08-09 21:42:54 +03:00
parent 6ec2fdc343
commit b7cdb5bb4e

View File

@ -6,9 +6,9 @@ RUN /usr/local/bin/python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY Pipfile ./
COPY requirements.txt ./
RUN set -ex && pip install
RUN set -ex && pip install -r requirements.txt
COPY . .