From abec9030f89a433d52d56ef3127a06f4daa93842 Mon Sep 17 00:00:00 2001 From: grillazz Date: Tue, 16 Dec 2025 14:02:44 +0100 Subject: [PATCH] update Dockerfile to use specific Python and UV versions --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6cdee5f..fe02c6a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.14-slim AS base +FROM python:3.14.0-slim-trixie AS base RUN apt-get update -qy \ && apt-get install -qyy \ @@ -7,7 +7,7 @@ RUN apt-get update -qy \ build-essential \ ca-certificates -COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/ +COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/ ENV UV_LINK_MODE=copy \ UV_COMPILE_BYTECODE=1 \ @@ -19,7 +19,7 @@ COPY uv.lock /_lock/ RUN cd /_lock && uv sync --locked --no-install-project ########################################################################## -FROM python:3.14-slim +FROM python:3.14.0-slim-trixie ENV PATH=/panettone/bin:$PATH