From c2722130c825e4054660fa8e390618936a0e8c3d Mon Sep 17 00:00:00 2001 From: Claas Augner Date: Tue, 19 Jan 2021 18:57:29 +0100 Subject: [PATCH] fix(docker): set WORKDIR --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1ac2b9b..1ca05da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.8 +WORKDIR /app + RUN pip install --upgrade pip # Avoid rebuilding this step if no changes to requirements.txt