woodpecker-email/Dockerfile

15 lines
287 B
Docker
Raw Normal View History

2015-12-11 09:46:07 +01:00
# Docker image for the Drone Email plugin
2015-11-11 02:44:23 +01:00
#
2015-12-11 09:46:07 +01:00
# cd $GOPATH/src/github.com/drone-plugins/drone-email
# make deps build docker
2015-11-11 02:44:23 +01:00
2015-12-11 09:46:07 +01:00
FROM alpine:3.2
RUN apk update && \
apk add \
ca-certificates && \
rm -rf /var/cache/apk/*
2015-11-11 02:44:23 +01:00
ADD drone-email /bin/
2015-12-11 09:46:07 +01:00
ENTRYPOINT ["/bin/drone-email"]