more docker layers
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Torma Kristóf 2020-04-17 16:35:42 +02:00
parent eff5f4191c
commit 72cc952506
1 changed files with 3 additions and 1 deletions

View File

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