diff --git a/release/ansible/Dockerfile.rhel8 b/release/ansible/Dockerfile.rhel8 index 36addfd2e..e289c399f 100644 --- a/release/ansible/Dockerfile.rhel8 +++ b/release/ansible/Dockerfile.rhel8 @@ -1,4 +1,4 @@ -FROM openshift/origin-release:golang-1.13 AS builder +FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-openshift-4.6 AS builder ENV GO111MODULE=on \ GOFLAGS=-mod=vendor @@ -7,7 +7,7 @@ COPY . /go/src/github.com/operator-framework/operator-sdk RUN cd /go/src/github.com/operator-framework/operator-sdk \ && make build/ansible-operator VERSION=$(git describe --tags --always) -FROM registry.access.redhat.com/ubi8/ubi +FROM registry.svc.ci.openshift.org/ocp/4.6:base RUN yum install -y \ ansible \ diff --git a/release/helm/Dockerfile b/release/helm/Dockerfile index 5e17aad44..4962f4032 100644 --- a/release/helm/Dockerfile +++ b/release/helm/Dockerfile @@ -1,4 +1,4 @@ -FROM openshift/origin-release:golang-1.13 AS builder +FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-openshift-4.6 AS builder ENV GO111MODULE=on \ GOFLAGS=-mod=vendor @@ -7,7 +7,7 @@ COPY . /go/src/github.com/operator-framework/operator-sdk RUN cd /go/src/github.com/operator-framework/operator-sdk \ && make build/helm-operator VERSION=$(git describe --tags --always) -FROM registry.access.redhat.com/ubi8/ubi-minimal:latest +FROM registry.svc.ci.openshift.org/ocp/4.6:base ENV OPERATOR=/usr/local/bin/helm-operator \ USER_UID=1001 \