Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.
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
2 changes: 1 addition & 1 deletion app/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.13.5-slim
FROM python:3.14.0-slim

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Avoid upgrading container to unsupported Python 3.14

The base image now pulls python:3.14.0-slim, but the project explicitly constrains its runtime to <3.13 in pyproject.toml. Building this image will now run the app on an untested Python release that upstream tooling currently refuses to install (Poetry/pip resolve will fail once the full dependency set is used) and any binary dependencies in app/requirements.txt may not yet ship wheels for 3.14. Unless the project’s declared compatibility range and dependencies are updated in tandem, this Docker build is likely to break as soon as it tries to install the project or its packages.

Useful? React with 👍 / 👎.


WORKDIR /app

Expand Down