drone-webhook/Dockerfile

10 lines
275 B
Docker
Raw Normal View History

2015-11-03 19:31:25 +00:00
# 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"]