docker: bump python from 3.11-slim to 3.14-slim - #3
Merged
Merged
Conversation
Bumps python from 3.11-slim to 3.14-slim. --- updated-dependencies: - dependency-name: python dependency-version: 3.14-slim dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot
Bot
force-pushed
the
dependabot/docker/python-3.14-slim
branch
from
September 10, 2026 13:06
e151eb4 to
d9cb939
Compare
This was referenced Sep 16, 2026
jqnatividad
added a commit
that referenced
this pull request
Sep 16, 2026
The production stage copied /usr/local/lib/python3.11/site-packages, but #3 bumped both stages to python:3.14-slim, where that path does not exist. Docker fails the instruction rather than skipping it, so every image build has failed since 2026-09-10 — including `docker compose up --build`, the Docker path the README documents. Nothing built the image in CI, which is why it shipped unnoticed for six days. Add a blocking `docker` job that builds it and boots it, asserting /health and /api/v1/health. The build alone is not enough: the production stage copies site-packages and src/ in separate COPY lines, and web.py swallows a failed API router import as a warning rather than a crash, so only booting the container catches those. Verified locally: build succeeds (873MB), image runs Python 3.14.7, deps and data_concierge import, qsv rides along on the /usr/local/bin copy, and both health endpoints return 200 with no restarts. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Warning
Cooldown could not be applied because no publication date was available from the registry.
Bumps python from 3.11-slim to 3.14-slim.