|
| 1 | +# DO NOT EDIT! Generated Dockerfile for knative.dev/eventing/test/test_images/wathola-forwarder. |
1 | 2 | ARG GO_BUILDER=registry.ci.openshift.org/openshift/release:rhel-8-release-golang-1.22-openshift-4.17 |
2 | 3 | ARG GO_RUNTIME=registry.access.redhat.com/ubi8/ubi-minimal |
3 | 4 |
|
4 | 5 | FROM $GO_BUILDER as builder |
5 | 6 |
|
| 7 | +WORKDIR /workspace |
6 | 8 | COPY . . |
7 | 9 |
|
8 | 10 | ENV CGO_ENABLED=1 |
9 | 11 | ENV GOEXPERIMENT=strictfipsruntime |
10 | | -# Reset the goflags to avoid the -mod=vendor flag |
11 | | -ENV GOFLAGS='' |
| 12 | +GOFLAGS='' |
12 | 13 |
|
13 | 14 | RUN go build -tags strictfipsruntime -o /usr/bin/main knative.dev/eventing/test/test_images/wathola-forwarder |
14 | 15 |
|
15 | 16 | FROM $GO_RUNTIME |
16 | 17 |
|
17 | | -ARG VERSION=knative-v1.16 |
| 18 | +ARG VERSION= |
18 | 19 |
|
19 | 20 | COPY --from=builder /usr/bin/main /usr/bin/wathola-forwarder |
| 21 | +COPY LICENSE /licenses/ |
20 | 22 |
|
21 | 23 | USER 65532 |
22 | 24 |
|
23 | 25 | LABEL \ |
24 | | - com.redhat.component="openshift-serverless-1-kn-plugin-event-wathola-forwarder-rhel8-container" \ |
25 | | - name="openshift-serverless-1-tech-preview/kn-plugin-event-wathola-forwarder-rhel8" \ |
| 26 | + com.redhat.component="openshift-serverless-1-knative.dev-eventing-test-test-images-wathola-forwarder-rhel8-container" \ |
| 27 | + name="openshift-serverless-1/knative.dev-eventing-test-test-images-wathola-forwarder-rhel8" \ |
26 | 28 | version=$VERSION \ |
27 | | - summary="Red Hat OpenShift Serverless 1 Kn Plugin Event Wathola Forwarder" \ |
| 29 | + summary="Red Hat OpenShift Serverless 1 Knative.Dev Eventing Test Test Images Wathola Forwarder" \ |
28 | 30 | maintainer="serverless-support@redhat.com" \ |
29 | | - description="Red Hat OpenShift Serverless 1 Kn Plugin Event Wathola Forwarder" \ |
30 | | - io.k8s.display-name="Red Hat OpenShift Serverless 1 Kn Plugin Event Wathola Forwarder" \ |
31 | | - io.k8s.description="Red Hat OpenShift Serverless Kn Plugin Event Wathola Forwarder" \ |
32 | | - io.openshift.tags="wathola-forwarder" |
| 31 | + description="Red Hat OpenShift Serverless 1 Knative.Dev Eventing Test Test Images Wathola Forwarder" \ |
| 32 | + io.k8s.display-name="Red Hat OpenShift Serverless 1 Knative.Dev Eventing Test Test Images Wathola Forwarder" \ |
| 33 | + io.k8s.description="Red Hat OpenShift Serverless Knative.Dev Eventing Test Test Images Wathola Forwarder" \ |
| 34 | + io.openshift.tags="knative.dev-eventing-test-test-images-wathola-forwarder" |
33 | 35 |
|
34 | 36 | ENTRYPOINT ["/usr/bin/wathola-forwarder"] |
0 commit comments