From 2f3cf1455c9c77f6782b11d05037601192ab0fa7 Mon Sep 17 00:00:00 2001 From: Filip Christiansen <22807962+filipchristiansen@users.noreply.github.com> Date: Fri, 4 Jul 2025 18:21:30 +0200 Subject: [PATCH] fix docker --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da8ac09b..92b8a0ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,6 @@ RUN apt-get update \ COPY pyproject.toml . COPY src/ ./src/ - # Install runtime dependencies defined in pyproject.toml RUN pip install --no-cache-dir --upgrade pip \ && pip install --no-cache-dir --timeout 1000 . @@ -34,7 +33,7 @@ RUN useradd -m -u 1000 appuser # Copy Python site-packages and code COPY --from=python-builder /usr/local/lib/python3.13/site-packages/ \ /usr/local/lib/python3.13/site-packages/ -COPY src/ ./src/ +COPY src/ ./ # Set permissions RUN chown -R appuser:appuser /app