Updated dockerfile to latest alpine image and updated docs

This commit is contained in:
Thomas Boerger 2016-01-01 21:34:17 +01:00
parent 57898a9c71
commit 01e226cea2

View File

@ -1,8 +1,14 @@
# Docker image for the Drone build runner
# Docker image for the Drone Swift plugin
#
# CGO_ENABLED=0 go build -a -tags netgo
# docker build --rm=true -t plugins/drone-ssh .
# cd $GOPATH/src/github.com/drone-plugins/drone-ssh
# make deps build docker
FROM alpine:3.3
RUN apk update && \
apk add \
ca-certificates && \
rm -rf /var/cache/apk/*
FROM gliderlabs/alpine:3.1
ADD drone-ssh /bin/
ENTRYPOINT ["/bin/drone-ssh"]