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 readme_docs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9.15
FROM python:latest
Copy link

Choose a reason for hiding this comment

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

Bug: Using floating latest tag breaks build reproducibility

Changing from python:3.9.15 to python:latest creates non-reproducible builds since the latest tag is mutable and can change at any time. This conflicts with the uv sync --locked command on line 8, which is designed for reproducible installs. When latest points to a new Python version (e.g., beyond 3.13), the build may fail since dependencies like msgpack-numpy==0.4.4.3 may not support it yet. Consider using a specific version tag like python:3.12 or python:3.13 instead.

Fix in Cursor Fix in Web


COPY --from=ghcr.io/astral-sh/uv:latest /uv /usr/local/bin/uv

Expand Down