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 = """
|
def dockerfile = """
|
||||||
FROM golang:alpine AS BUILDER
|
FROM golang:alpine AS BUILDER
|
||||||
RUN apk --no-cache add git
|
RUN apk --no-cache add git upx
|
||||||
WORKDIR /go/src/app
|
WORKDIR /go/src/app
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN go get -d -v ./... && \\
|
RUN go get -d -v ./... && \\
|
||||||
go install -v ./... && \\
|
go install -v ./... && \\
|
||||||
go build -ldflags="-s -w" -o app ./
|
go build -ldflags="-s -w" -o app ./ && \\
|
||||||
|
upx --brute app
|
||||||
|
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
RUN apk add --no-cache ca-certificates && \\
|
RUN apk add --no-cache ca-certificates && \\
|
||||||
|
Reference in New Issue
Block a user