You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
next: add golang fips tags, and use ubi instead of minimal
add fips GOEXPERIMENT and golang build tags
use ubi and not ubi minimal as the openssh-clients package
has dependencies which are available in ubi and not
ubi-minimal
RUN set -e; for f in patches/*.patch; do echo ${f}; [[ -f ${f} ]] || continue; git apply ${f}; done
10
11
COPY head HEAD
11
12
ENV GODEBUG="http2server=0"
12
-
RUN cd image/git-init && go build -ldflags="-X 'knative.dev/pkg/changeset.rev=$(cat HEAD)'" -mod=vendor -v -o /tmp/tektoncd-catalog-git-clone
13
+
ENV GOEXPERIMENT=strictfipsruntime
14
+
RUN cd image/git-init && go build -ldflags="-X 'knative.dev/pkg/changeset.rev=$(cat HEAD)'" -mod=vendor -tags strictfipsruntime -v -o /tmp/tektoncd-catalog-git-clone
0 commit comments