Skip to content
Open
Show file tree
Hide file tree
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
Expand Up @@ -13,7 +13,7 @@
# ──────────────────────────────────────────────────────────────────────────
# Stage 1 — Builder
# ──────────────────────────────────────────────────────────────────────────
FROM python:3.11-slim AS builder
FROM python:3.14-slim AS builder

ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
Expand Down Expand Up @@ -42,7 +42,7 @@ RUN pip install --upgrade pip build \
# ──────────────────────────────────────────────────────────────────────────
# Stage 2 — Runtime
# ──────────────────────────────────────────────────────────────────────────
FROM python:3.11-slim AS runtime
FROM python:3.14-slim AS runtime

ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cloudrun
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Google Cloud Run. Listens on $PORT (Cloud Run injects it). The server module
# is inlined here to keep the runtime image self-contained.

FROM python:3.11-slim
FROM python:3.14-slim

ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 PIP_NO_CACHE_DIR=1 PORT=8080

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.lambda
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# - Bumping the Lambda runtime base image
# - Changing the handler entrypoint

FROM python:3.11-slim AS base
FROM python:3.14-slim AS base

ENV PIP_NO_CACHE_DIR=1
WORKDIR /build
Expand Down
Loading