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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.14.0rc2-alpine3.22
FROM python:3.14.0-alpine3.22

Choose a reason for hiding this comment

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

medium

For improved security and build reproducibility, it's a best practice to pin the base image to its immutable digest (SHA256) instead of a mutable tag. This protects against tag mutability, where the python:3.14.0-alpine3.22 tag could be updated to point to a different image digest.

You can find the digest for the image (for example, by running docker pull python:3.14.0-alpine3.22 and then docker inspect python:3.14.0-alpine3.22) and update the FROM instruction like this:

FROM python:3.14.0-alpine3.22@sha256:<the-sha256-digest-of-the-image>

This ensures that you are always using the exact same base image for your builds.


RUN mkdir /data && \
mkdir /igel
Expand Down
Loading