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 ad19aa2 commit 2898281Copy full SHA for 2898281
Dockerfile.rhtap
@@ -0,0 +1,17 @@
1
+# Build the manager binary
2
+FROM brew.registry.redhat.io/rh-osbs/openshift-golang-builder:rhel_8_1.20 as builder
3
+
4
+WORKDIR /workspace
5
+COPY . .
6
+# Build
7
+RUN CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -a -o manager main.go
8
9
+FROM registry.redhat.io/rhel9-2-els/rhel:9.2
10
+WORKDIR /
11
+COPY --from=builder /workspace/manager .
12
+USER 65532:65532
13
14
+ENTRYPOINT ["/manager"]
15
16
+ARG QUAY_TAG_EXPIRATION
17
+LABEL "quay.expires-after"=${QUAY_TAG_EXPIRATION}
0 commit comments