1
0
mirror of https://github.com/openshift/source-to-image.git synced 2026-02-05 12:44:54 +01:00

Merge pull request #1192 from adambkaplan/reproducible-builds

NO-JIRA: Update Dockerfile with Immutable Tags
This commit is contained in:
openshift-merge-bot[bot]
2024-11-11 00:23:07 +00:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
FROM registry.redhat.io/ubi8/go-toolset:1.21 AS builder
FROM registry.redhat.io/ubi8/go-toolset:1.21.13-1.1727869850 AS builder
ENV S2I_GIT_VERSION="1.4.1" \
S2I_GIT_MAJOR="1" \
@@ -12,7 +12,7 @@ RUN CGO_ENABLED=0 GO111MODULE=on go build -a -mod=vendor -ldflags="-s -w" -o /tm
# Runner Image
#
FROM registry.redhat.io/ubi8/ubi-minimal:8.10
FROM registry.redhat.io/ubi8/ubi-minimal:8.10-1130
COPY --from=builder /tmp/s2i /usr/local/bin/s2i