Compare commits

...

1 Commits

Author SHA1 Message Date
37b6d09df5 change layer order
All checks were successful
continuous-integration/drone/push Build is passing
2020-03-09 17:40:59 +01:00

View File

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