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
@@ -1,7 +1,7 @@
# Use the Dockerfile 1.2 syntax to leverage BuildKit features like cache mounts and inline mounts--temporary mounts that are only available during the build step, not at runtime.
# syntax=docker/dockerfile:1.2

FROM python:3.9-slim
FROM python:3.14.3-slim

Choose a reason for hiding this comment

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

critical

The proposed Python version 3.14.3 does not exist. The latest stable Python version is 3.12. This will cause the Docker build to fail because the image python:3.14.3-slim cannot be found.

I recommend upgrading to a recent, stable version, such as Python 3.12. Please note that a major version upgrade from 3.9 to 3.12 may introduce breaking changes, so thorough testing will be required after updating the base image.

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