Skip to content

Commit 06a0657

Browse files
committed
TESTING
Signed-off-by: Matej Vašek <[email protected]>
1 parent a28c862 commit 06a0657

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

openshift/ci-operator/build-image/Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
FROM registry.ci.openshift.org/ocp/4.17:cli-artifacts as tools
44

55
# Dockerfile to bootstrap build and test in openshift-ci
6-
FROM registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.24-nofips-openshift-4.19 as builder
6+
FROM registry.redhat.io/rhel10/go-toolset@sha256:050c556adbf8a684de705abadfdfaf105936e5b4e7abe4f46d6b095a684bfa37 as builder
7+
8+
USER 0:0
9+
RUN yum update -y go
10+
USER 1001:0
711

812
ARG TARGETARCH
913

openshift/ci-operator/knative-images/func-util/Dockerfile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# DO NOT EDIT! Generated Dockerfile for cmd/func-util.
2-
ARG GO_BUILDER=registry.ci.openshift.org/openshift/release:rhel-9-release-golang-1.24-nofips-openshift-4.19
3-
ARG GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal
2+
ARG GO_BUILDER=registry.redhat.io/rhel10/go-toolset@sha256:050c556adbf8a684de705abadfdfaf105936e5b4e7abe4f46d6b095a684bfa37
3+
ARG GO_RUNTIME=registry.redhat.io/ubi10-minimal@sha256:da1aedf263c25c4d5a58bc9d44a6b9f973a217ed67cb7ad2e08ec2711e901eec
44

55
FROM $GO_BUILDER as builder
66

7+
USER 0:0
8+
RUN yum update -y go
9+
USER 1001:0
10+
711
WORKDIR /workspace
812
COPY . .
913

0 commit comments

Comments
 (0)