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 0943442 commit b83124eCopy full SHA for b83124e
.konflux/dockerfiles/opc.Dockerfile
@@ -5,7 +5,10 @@ FROM $GO_BUILDER AS builder
5
6
WORKDIR /go/src/github.com/openshift-pipelines/opc
7
COPY . .
8
-RUN go build -buildvcs=false -mod=vendor -o /tmp/opc main.go
+COPY .konflux/patches patches/
9
+RUN set -e; for f in patches/*.patch; do echo ${f}; [[ -f ${f} ]] || continue; git apply ${f}; done
10
+ENV GOEXPERIMENT="strictfipsruntime"
11
+RUN go build -buildvcs=false -mod=vendor -tags disable_gcp,strictfipsruntime -o /tmp/opc main.go
12
13
FROM $RUNTIME
14
ARG VERSION=opc-main
0 commit comments