initial commit

This commit is contained in:
Nathan LaFreniere
2015-12-12 16:06:57 -08:00
commit f06a041ee0
5 changed files with 157 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
# Docker image for the Drone build runner
#
# CGO_ENABLED=0 go build -a -tags netgo
# docker build --rm=true -t plugins/drone-rancher .
FROM gliderlabs/alpine:3.1
RUN apk add --update \
ca-certificates
ADD drone-rancher /bin/
ENTRYPOINT ["/bin/drone-rancher"]