Skip to content

Commit abec903

Browse files
committed
update Dockerfile to use specific Python and UV versions
1 parent 83138b3 commit abec903

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.14-slim AS base
1+
FROM python:3.14.0-slim-trixie AS base
22

33
RUN apt-get update -qy \
44
&& apt-get install -qyy \
@@ -7,7 +7,7 @@ RUN apt-get update -qy \
77
build-essential \
88
ca-certificates
99

10-
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
10+
COPY --from=ghcr.io/astral-sh/uv:0.9.17 /uv /uvx /bin/
1111

1212
ENV UV_LINK_MODE=copy \
1313
UV_COMPILE_BYTECODE=1 \
@@ -19,7 +19,7 @@ COPY uv.lock /_lock/
1919

2020
RUN cd /_lock && uv sync --locked --no-install-project
2121
##########################################################################
22-
FROM python:3.14-slim
22+
FROM python:3.14.0-slim-trixie
2323

2424
ENV PATH=/panettone/bin:$PATH
2525

0 commit comments

Comments
 (0)