Skip to content
This repository was archived by the owner on Feb 6, 2026. It is now read-only.
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
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.14.0-slim
FROM python:3.14.2-slim
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

critical

The Python version 3.14.2 specified in the base image tag does not exist. Python 3.14 has not been released, making python:3.14.2-slim an invalid image tag. This will cause the Docker build to fail with an error like 'manifest not found'. Please use a valid tag for a recent, stable Python version. Based on your project's dependencies, python:3.12-slim would be a suitable replacement.

FROM python:3.12-slim

Copy link

Copilot AI Feb 4, 2026

Choose a reason for hiding this comment

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

The Docker base image is being updated to Python 3.14.2, but the repo declares/supports Python 3.11 (e.g., .python-version is 3.11.5, pyproject.toml constrains python = "^3.11.2,<3.13", and README lists Python 3.11). This mismatch can lead to dependency/runtime incompatibilities in the container. Consider switching the base image to a supported version (e.g., python:3.11-slim or python:3.12-slim) or, if Python 3.14 is intentional, update the repo’s declared Python version constraints/docs accordingly and ensure CI covers it.

Suggested change
FROM python:3.14.2-slim
FROM python:3.11-slim

Copilot uses AI. Check for mistakes.

WORKDIR /app

Expand Down
Loading