adds compression to compiled binary to make it smaller.
This commit is contained in:
parent
e889cd7dc8
commit
00131ae1a3
@ -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 && \\
|
||||
|
Reference in New Issue
Block a user