mirror of
https://github.com/eko/pihole-exporter.git
synced 2024-11-21 11:05:22 +01:00
Added upx to shrink docker image to ~2MB
This commit is contained in:
parent
daa4b0b448
commit
ee44831d49
@ -21,7 +21,7 @@ install:
|
||||
|
||||
script:
|
||||
- go test -v -race ./...
|
||||
- if [ "${LATEST}" = "true" ]; then gox -os="linux darwin windows" -arch="386 amd64" -osarch="linux/arm" -output="pihole_exporter-{{.OS}}-{{.Arch}}" -verbose ./...; fi
|
||||
- if [ "${LATEST}" = "true" ]; then gox -ldflags "-s -w" -os="linux darwin windows" -arch="386 amd64" -osarch="linux/arm" -output="pihole_exporter-{{.OS}}-{{.Arch}}" -verbose ./...; fi
|
||||
|
||||
deploy:
|
||||
provider: releases
|
||||
|
@ -4,17 +4,17 @@ WORKDIR /go/src/github.com/eko/pihole-exporter
|
||||
COPY . .
|
||||
|
||||
RUN apk update && \
|
||||
apk --no-cache add git alpine-sdk
|
||||
apk --no-cache add git alpine-sdk upx
|
||||
|
||||
RUN GO111MODULE=on go mod vendor
|
||||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags '-w' -o binary ./
|
||||
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -ldflags '-s -w' -o binary ./
|
||||
RUN upx -f --brute binary
|
||||
|
||||
FROM scratch
|
||||
|
||||
LABEL name="pihole-exporter"
|
||||
|
||||
WORKDIR /root/
|
||||
|
||||
COPY --from=builder /go/src/github.com/eko/pihole-exporter/binary pihole-exporter
|
||||
|
||||
CMD ["./pihole-exporter"]
|
||||
|
Loading…
Reference in New Issue
Block a user