Skip to content
Merged
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
4 changes: 2 additions & 2 deletions openshift/registry.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
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
WORKDIR /build
COPY . .
# TODO Modify upstream Makefile to separate the 'go build' commands
# from 'image-registry' target so we don't need these
RUN go build -o ./registry ./testdata/registry/registry.go
RUN go build -o ./push ./testdata/push/push.go

FROM registry.ci.openshift.org/ocp/4.19:base-rhel9
FROM registry.ci.openshift.org/ocp/4.20:base-rhel9
USER 1001
COPY --from=builder /build/registry /registry
COPY --from=builder /build/push /push
Expand Down