ntfy-alertmanager/docker/Dockerfile-dev
Thorben Günther 55c58d882c
Publish a dev docker image
It is build from the master branch.
2023-01-14 21:31:54 +01:00

13 lines
220 B
Text

FROM golang:alpine as build
WORKDIR /app
COPY . .
RUN go build -o /app/ntfy-alertmanager
FROM alpine:latest
WORKDIR /
COPY --from=build /app/ntfy-alertmanager /ntfy-alertmanager
ENTRYPOINT [ "./ntfy-alertmanager" ]