adds compression to compiled binary to make it smaller.

This commit is contained in:
Hyatt 2020-05-24 11:46:38 -05:00
parent e889cd7dc8
commit 00131ae1a3
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -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 && \\