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 Dockerfile.tests
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# syntax=docker/dockerfile:1.2

# Starting from a Go base image is easier than setting up the Go environment later.
FROM python:3.14.0a1-slim
FROM python:3.14.0-slim

Choose a reason for hiding this comment

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

critical

The intent to upgrade the Python base image for security is good, but the proposed image tag python:3.14.0-slim is invalid as Python 3.14 has not been released. This will cause the build to fail. The original tag python:3.14.0a1-slim also appears to be invalid.

To fix this, please use a valid image tag. I recommend using the latest stable version for better security and stability.

FROM python:3.12-slim


# Install the necessary packages for the test environment.
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
Expand Down
Loading