We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd1cea0 commit 77ca9f4Copy full SHA for 77ca9f4
openshift/registry.Dockerfile
@@ -1,12 +1,12 @@
1
-FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.23-openshift-4.19 AS builder
+FROM registry.ci.openshift.org/ocp/builder:rhel-9-golang-1.24-openshift-4.20 AS builder
2
WORKDIR /build
3
COPY . .
4
# TODO Modify upstream Makefile to separate the 'go build' commands
5
# from 'image-registry' target so we don't need these
6
RUN go build -o ./registry ./testdata/registry/registry.go
7
RUN go build -o ./push ./testdata/push/push.go
8
9
-FROM registry.ci.openshift.org/ocp/4.19:base-rhel9
+FROM registry.ci.openshift.org/ocp/4.20:base-rhel9
10
USER 1001
11
COPY --from=builder /build/registry /registry
12
COPY --from=builder /build/push /push
0 commit comments