Skip to content
Closed
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 docker/production/app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#########################################################################################################
# Python compile image
#########################################################################################################
FROM python:3.14.2-slim-bookworm AS app-compiler
FROM python:3.15.0a5-slim-bookworm AS app-compiler

ENV PYTHONUNBUFFERED=1

Expand Down Expand Up @@ -31,7 +31,7 @@ RUN --mount=type=cache,target=/root/.cache/uv \
#########################################################################################################
# Python build image
#########################################################################################################
FROM python:3.14.2-slim-bookworm AS python-builder
FROM python:3.15.0a5-slim-bookworm AS python-builder

LABEL maintainer="srtabs@gmail.com"

Expand Down
Loading