mirror of
https://github.com/drone-plugins/drone-webhook.git
synced 2026-06-04 18:24:05 +08:00
10 lines
275 B
Docker
10 lines
275 B
Docker
# Docker image for Drone's webhook notification plugin
|
|
#
|
|
# CGO_ENABLED=0 go build -a -tags netgo
|
|
# docker build --rm=true -t plugins/drone-webhook .
|
|
|
|
FROM gliderlabs/alpine:3.1
|
|
RUN apk-install ca-certificates
|
|
ADD drone-webhook /bin/
|
|
ENTRYPOINT ["/bin/drone-webhook"]
|