From 37b6d09df550c0eb9dc75774100b79746a5f515d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 9 Mar 2020 17:40:59 +0100 Subject: [PATCH] change layer order --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8513bd4..a551683 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]