We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2898281 commit d0f3139Copy full SHA for d0f3139
Dockerfile
@@ -1,12 +1,15 @@
1
# Build the manager binary
2
-FROM registry.ci.openshift.org/openshift/release:golang-1.20 as builder
+FROM registry.access.redhat.com/ubi9/go-toolset:1.20 as builder
3
+
4
+USER 0
5
6
WORKDIR /workspace
7
COPY . .
8
# Build
9
RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -a -o manager main.go
10
-FROM registry.ci.openshift.org/ocp/4.14:base
11
+FROM quay-proxy.ci.openshift.org/openshift/ci:ocp_4.16_base-rhel9
12
13
WORKDIR /
14
COPY --from=builder /workspace/manager .
15
USER 65532:65532
go.mod
@@ -1,6 +1,6 @@
module github.com/openshift/cluster-api-provider-agent
-go 1.18
+go 1.20
// Versions to be held for v1beta1
// sigs.k8s.io/controller-runtime on v0.11.x
0 commit comments