diff --git a/build-certificate-monitor.jenkins b/build-certificate-monitor.jenkins index 2779731..c230a97 100644 --- a/build-certificate-monitor.jenkins +++ b/build-certificate-monitor.jenkins @@ -13,12 +13,13 @@ sonar.go.coverage.reportPaths=cover.out """ def dockerfile = """ FROM golang:alpine AS BUILDER -RUN apk --no-cache add git +RUN apk --no-cache add git upx WORKDIR /go/src/app COPY . . RUN go get -d -v ./... && \\ go install -v ./... && \\ - go build -ldflags="-s -w" -o app ./ + go build -ldflags="-s -w" -o app ./ && \\ + upx --brute app FROM alpine:latest RUN apk add --no-cache ca-certificates && \\