From d6c96fc0b06aabbd8d6cdcc2a38392dc8b66f7f4 Mon Sep 17 00:00:00 2001 From: Venkat Date: Mon, 2 Mar 2026 19:15:20 -0800 Subject: [PATCH] fix: Update Python site-packages path to version 3.14 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 92982b3..92c8759 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ FROM python:3.14.3-alpine@sha256:faee120f7885a06fcc9677922331391fa690d911c020abb WORKDIR /app # Copy the dependencies from the builder stage -COPY --from=builder /usr/local/lib/python3.11/site-packages /usr/local/lib/python3.11/site-packages +COPY --from=builder /usr/local/lib/python3.14/site-packages /usr/local/lib/python3.14/site-packages COPY --from=builder /usr/local/bin /usr/local/bin # Copy the application files @@ -43,4 +43,4 @@ USER appuser EXPOSE 8000 # Use ENTRYPOINT to ensure the container runs as expected -ENTRYPOINT ["python", "-u", "main.py"] \ No newline at end of file +ENTRYPOINT ["python", "-u", "main.py"]