Skip to content
Merged
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 backend-py/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use Python 3.14.1 base image and install uv
FROM python:3.14.1-slim-bookworm AS build
FROM python:3.14.2-slim-bookworm AS build

# Install uv
RUN pip install --no-cache-dir uv
Expand Down Expand Up @@ -30,7 +30,7 @@ COPY src ./src
RUN uv sync --frozen --no-dev

# Production stage
FROM python:3.14.1-slim-bookworm AS deploy
FROM python:3.14.2-slim-bookworm AS deploy

# Set environment variables
ENV PYTHONUNBUFFERED=1 \
Expand Down
Loading