woodpecker-email/Dockerfile
2015-12-15 00:48:25 +01:00

15 lines
287 B
Docker

# Docker image for the Drone Email plugin
#
# cd $GOPATH/src/github.com/drone-plugins/drone-email
# make deps build docker
FROM alpine:3.2
RUN apk update && \
apk add \
ca-certificates && \
rm -rf /var/cache/apk/*
ADD drone-email /bin/
ENTRYPOINT ["/bin/drone-email"]