Pin Dockerfile base images to specific versions #7
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
Several Dockerfiles use floating tags that produce non-reproducible builds:
polygon/bor/Dockerfileline 2:FROM golang:latest-alpine as builderpolygon/bor/Dockerfileline 20:FROM alpine:latestImpact
Fix
Pin to specific versions:
Also audit other Dockerfiles for similar floating tag usage (e.g.,
dynaconf/Dockerfileusespython:bullseye).Found during codebase audit