Upgrade django to 5.2, python to 3.13 (#1915)

This commit is contained in:
daveoconnor
2025-10-22 13:24:26 -07:00
committed by GitHub
parent 1ec3cba5e3
commit 5f022aca0a
26 changed files with 207 additions and 130 deletions

View File

@@ -1,6 +1,6 @@
# syntax = docker/dockerfile:experimental
FROM python:3.11-slim AS builder-py
FROM python:3.13-slim AS builder-py
ARG LOCAL_DEVELOPMENT
@@ -42,7 +42,7 @@ RUN yarn build
# Final image.
FROM python:3.11-slim AS release
FROM python:3.13-slim AS release
RUN apt update && apt install -y git libpq-dev ruby ruby-dev && rm -rf /var/lib/apt/lists/*