Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base image for building the environment
FROM python:3.12 AS env-builder
FROM python:3.14 AS env-builder

ARG VERSION

Expand Down Expand Up @@ -81,7 +81,7 @@ RUN --mount=type=tmpfs,target=/root/.cargo \
find . -type f \( -name '__pycache__' -o -name '*.pyc' -o -name '*.pyo' \) -exec bash -c 'echo "Deleting {}"; rm -f {}' \;

# Final lightweight image
FROM python:3.12-slim-bookworm AS final
FROM python:3.14-slim-bookworm AS final

# Set up a user for the final image
ENV GOSU_VERSION=1.17 \
Expand Down