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
6 changes: 3 additions & 3 deletions Docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# syntax=docker/dockerfile:1.7
# syntax=docker/dockerfile:1.25

# ==============================================================================
# Builder stage
Expand All @@ -11,7 +11,7 @@
# Nginx runtime image.
# ==============================================================================

FROM python:3.12-alpine AS builder
FROM python:3.14-alpine AS builder

# Keep Python/Pip behavior predictable in CI and Docker builds.
ENV PYTHONDONTWRITEBYTECODE=1 \
Expand Down Expand Up @@ -65,7 +65,7 @@ RUN mkdocs build --clean --strict
# tooling, or compiler packages.
# ==============================================================================

FROM nginxinc/nginx-unprivileged:1.27-alpine AS runtime
FROM nginxinc/nginx-unprivileged:1.31-alpine AS runtime

# Document the port used by nginx-unprivileged and Docs/nginx.conf.
EXPOSE 8080
Expand Down
Loading