Skip to content

Commit

Permalink
Added upx to shrink docker image to ~2MB
Browse files Browse the repository at this point in the history
  • Loading branch information
eko committed Jun 15, 2019
1 parent daa4b0b commit bb7a37b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Dockerfile
Expand Up @@ -4,17 +4,18 @@ 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 go-binary ./

RUN upx -f --brute -o binary go-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"]

0 comments on commit bb7a37b

Please sign in to comment.