From 9ef258fddec984a6b5fd249b8f4c14edf3c8860c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Schl=C3=B6gl?= Date: Fri, 2 Feb 2024 19:24:56 +0100 Subject: [PATCH] fix: missing folder for install --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c15fd23..fd0227c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,9 +26,10 @@ COPY ./pyproject.toml ./poetry.lock* /app/ # Allow installing dev dependencies to run tests ARG INSTALL_DEV=false +COPY . /app + RUN pip install . -COPY . /app ENV PYTHONPATH=/app