Simon Bruder
9871336025
All checks were successful
continuous-integration/drone/push Build is passing
22 lines
452 B
Docker
22 lines
452 B
Docker
FROM golang:alpine as builder
|
|
|
|
WORKDIR /go/src/git.sbruder.de/simon/alertmanager-gotify/
|
|
|
|
COPY alertmanager-gotify.go .
|
|
|
|
RUN apk add --no-cache git upx
|
|
|
|
RUN go get -v \
|
|
&& CGO_ENABLED=0 go build -v -ldflags="-s -w" \
|
|
&& upx --ultra-brute alertmanager-gotify
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /go/src/git.sbruder.de/simon/alertmanager-gotify/alertmanager-gotify /alertmanager-gotify
|
|
|
|
USER 1000
|
|
|
|
ENTRYPOINT ["/alertmanager-gotify"]
|
|
|
|
EXPOSE 8081
|