This commit is contained in:
Hyatt 2022-01-30 14:19:48 -06:00
parent f954b7c3ed
commit d81e63b5d8
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -18,14 +18,14 @@ RUN apk add --no-cache git upx && \\
addgroup -S -g 1000 app && \\ addgroup -S -g 1000 app && \\
adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app && \\ adduser --disabled-password -G app --gecos "application account" --home "/home/app" --shell "/sbin/nologin" --no-create-home --uid 1000 app && \\
go mod download && \\ go mod download && \\
GIT_HASH=\$(git rev-parse --short HEAD) && GIT_TAG=\$(git tag | tail -1) && \\ GIT_HASH="$$(git rev-parse --short HEAD) && GIT_TAG=$$(git tag | tail -1)"" && \\
CGO_ENABLED=0 && \\ CGO_ENABLED="0" && \\
GOOS=linux && \\ GOOS="linux" && \\
GOARCH=amd64 && \\ GOARCH="amd64" && \\
go build \\ go build \\
-v \\ -v \\
-tags timetzdata \\ -tags timetzdata \\
-ldflags="-s -w -X 'github.com/salesforce/generic-sidecar-injector/pkg/metrics.gitHash=\${GIT_HASH}' -X 'github.com/salesforce/generic-sidecar-injector/pkg/metrics.gitTag=\${GIT_TAG}'" \\ -ldflags="-s -w -X 'github.com/salesforce/generic-sidecar-injector/pkg/metrics.gitHash=$${GIT_HASH}' -X 'github.com/salesforce/generic-sidecar-injector/pkg/metrics.gitTag=$${GIT_TAG}'" \\
-installsuffix cgo \\ -installsuffix cgo \\
-o sidecarinjector \\ -o sidecarinjector \\
./cmd/sidecarinjector && \\ ./cmd/sidecarinjector && \\