change Dockerfile layer order
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Torma Kristóf 2020-03-09 17:41:31 +01:00
parent b91b68fa4a
commit f98f7f8df6
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047

View File

@ -2,8 +2,8 @@ FROM python:3
WORKDIR /app
RUN pip3 install --no-cache-dir -r requirements.txt
COPY . ./
RUN pip3 install --no-cache-dir -r requirements.txt
CMD ["python3" "app.py"]