diff --git a/images/kube-proxy/Dockerfile.rhel b/images/kube-proxy/Dockerfile.rhel index 6cec62306..cdd53da2f 100644 --- a/images/kube-proxy/Dockerfile.rhel +++ b/images/kube-proxy/Dockerfile.rhel @@ -1,9 +1,9 @@ -FROM registry.svc.ci.openshift.org/ocp/builder:golang-1.13 AS builder +FROM registry.svc.ci.openshift.org/ocp/builder:rhel-8-golang-openshift-4.6 AS builder WORKDIR /go/src/github.com/openshift/sdn COPY . . RUN make build --warn-undefined-variables -FROM registry.svc.ci.openshift.org/ocp/4.2:base +FROM registry.svc.ci.openshift.org/ocp/4.6:base RUN INSTALL_PKGS="conntrack-tools" && \ yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS && \ yum clean all && rm -rf /var/cache/*