Skip to content
Merged
Show file tree
Hide file tree
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 release/ansible/Dockerfile.rhel8
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 \
Expand Down
4 changes: 2 additions & 2 deletions release/helm/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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 \
Expand Down