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
2 changes: 1 addition & 1 deletion cloud-sql/postgres/sqlalchemy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Use the official Python image.
# https://hub.docker.com/_/python
FROM python:3.13
FROM python:3.15-rc-slim-trixie
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

high

Upgrading to an unstable release candidate of a future Python version (3.15-rc) on a Debian testing distribution (trixie) is highly risky. Many dependencies in requirements.txt (such as pg8000 or SQLAlchemy) may not have compatible wheels or support for Python 3.15 yet, which can lead to build or runtime failures. Consider using a stable, slim image of a supported Python version instead.

FROM python:3.13-slim


RUN apt-get update

Expand Down