diff --git a/Dockerfile b/Dockerfile index 36e3207..2e0e0ea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ######################################################################################################################## # Base stage, includes uv ######################################################################################################################## -FROM python:3.13.14-alpine3.24@sha256:399babc8b49529dabfd9c922f2b5eea81d611e4512e3ed250d75bd2e7683f4b0 AS base +FROM python:3.13.15-alpine3.24@sha256:540c7d91f98ff6880174c40e99067bf5941eb54d818a7a5e094d188b196a934d AS base COPY --from=ghcr.io/astral-sh/uv:0.11.21@sha256:ff07b86af50d4d9391d9daf4ff89ce427bc544f9aae87057e69a1cc0aa369946 /uv /uvx /bin/ # Enable bytecode compilation @@ -86,7 +86,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \ # Minimal production-ready image ######################################################################################################################## # The same image that matches the build stage must be used as the path to the Python executable must be the same. -FROM python:3.13.14-alpine3.24@sha256:399babc8b49529dabfd9c922f2b5eea81d611e4512e3ed250d75bd2e7683f4b0 AS prod +FROM python:3.13.15-alpine3.24@sha256:540c7d91f98ff6880174c40e99067bf5941eb54d818a7a5e094d188b196a934d AS prod WORKDIR /app