From 00131ae1a37b3ae58064f843750248369b34aee2 Mon Sep 17 00:00:00 2001 From: The_Spider Date: Sun, 24 May 2020 11:46:38 -0500 Subject: [PATCH] adds compression to compiled binary to make it smaller. --- build-certificate-monitor.jenkins | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 && \\