diff --git a/images/installer/Dockerfile.ci b/images/installer/Dockerfile.ci index 989b0335f04..64f7bbf32ce 100644 --- a/images/installer/Dockerfile.ci +++ b/images/installer/Dockerfile.ci @@ -1,13 +1,13 @@ # This Dockerfile is used by CI to publish the installer image. # It builds an image containing only the openshift-install. -FROM registry.svc.ci.openshift.org/openshift/release:golang-1.14 AS builder +FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-openshift-4.6 AS builder WORKDIR /go/src/github.com/openshift/installer COPY . . RUN hack/build.sh -FROM registry.svc.ci.openshift.org/origin/4.1:base +FROM registry.svc.ci.openshift.org/ocp/4.6:base COPY --from=builder /go/src/github.com/openshift/installer/bin/openshift-install /bin/openshift-install RUN mkdir /output && chown 1000:1000 /output USER 1000:1000