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 c306702 commit 388c1c8Copy full SHA for 388c1c8
.konflux/dockerfiles/controller.Dockerfile
@@ -9,7 +9,8 @@ COPY .konflux/patches patches/
9
RUN set -e; for f in patches/*.patch; do echo ${f}; [[ -f ${f} ]] || continue; git apply ${f}; done
10
COPY head HEAD
11
ENV GODEBUG="http2server=0"
12
-RUN go build -ldflags="-X 'knative.dev/pkg/changeset.rev=$(cat HEAD)'" -mod=vendor -tags disable_gcp -v -o /tmp/controller \
+ENV GOEXPERIMENT=strictfipsruntime
13
+RUN go build -ldflags="-X 'knative.dev/pkg/changeset.rev=$(cat HEAD)'" -mod=vendor -tags disable_gcp -tags strictfipsruntime -v -o /tmp/controller \
14
./cmd/controller
15
16
FROM $RUNTIME
0 commit comments