mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
23 lines
573 B
Docker
23 lines
573 B
Docker
#
|
|
# Dockerfile for webhook
|
|
#
|
|
|
|
FROM golang:alpine AS build
|
|
ENV CGO_ENABLED=0
|
|
ENV GOOS=linux
|
|
ENV GOARCH=amd64
|
|
WORKDIR /go/bin
|
|
RUN apk add --no-cache git
|
|
RUN go get -d -v github.com/adnanh/webhook
|
|
RUN go build --ldflags '-s -extldflags "-static"' -i -o webhook github.com/adnanh/webhook
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
RUN apk add --no-cache bash coreutils curl jq
|
|
COPY --from=build /go/bin/webhook /usr/local/bin/
|
|
WORKDIR /etc/webhook
|
|
VOLUME /etc/webhook
|
|
EXPOSE 9000
|
|
ENTRYPOINT ["webhook"]
|
|
CMD ["-hooks", "hooks.json", "-hotreload", "-template", "-verbose"]
|