From cfb53b374e747d5e5fba8bb30c46f53619314d51 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Sun, 9 Jan 2022 09:46:30 -0600 Subject: [PATCH] corrects syntax --- Jenkinsfile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 99384c5..d3be959 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -24,7 +24,13 @@ spec: image: ${repository}/dockerhub/library/golang:latest tty: true command: - - /bin/cat + - /bin/sh + - name: alpine + image: ${repository}/library/alpine:latest + imagePullPolicy: Always + tty: true + command: + - /bin/sh """) { node (label) { def workspace = pwd() @@ -112,7 +118,7 @@ RUN apk add --no-cache git upx && \\ go get -d -v ./... && \\ go install -v ./... && \\ GOOG=linux GOARCH=amd64 CGO_ENABLED=0 go build -v -ldflags="-s -w" -tags timetzdata -o app ./cmd/tpapi && \\ - upx --lzma --ultra-brute app + upx --lzma app FROM scratch