changed pip command version

This commit is contained in:
2019-07-04 16:44:22 +01:00
parent 3b1ff8dbb8
commit 3d58630e96

View File

@@ -4,6 +4,6 @@ RUN apt-get update -y
RUN apt-get install -y python3-pip python3-dev build-essential
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
RUN pip3 install -r requirements.txt
ENTRYPOINT ["python3"]
CMD ["app.py"]