mirror of
https://github.com/appleboy/drone-ssh.git
synced 2025-05-09 18:23:21 +08:00
12 lines
283 B
Docker
12 lines
283 B
Docker
# Docker image for the Drone build runner
|
|
#
|
|
# CGO_ENABLED=0 go build -a -tags netgo
|
|
# docker build --rm=true -t plugins/drone-ssh .
|
|
|
|
FROM gliderlabs/alpine:3.1
|
|
RUN apk add --update \
|
|
python \
|
|
py-pip \
|
|
&& pip install awscli
|
|
ADD drone-ssh /bin/
|
|
ENTRYPOINT ["/bin/drone-ssh"] |