mirror of
https://github.com/thegeeklab/wp-s3-action.git
synced 2024-11-09 18:30:40 +00:00
13 lines
291 B
Docker
13 lines
291 B
Docker
# Docker image for the Drone build runner
|
|
#
|
|
# CGO_ENABLED=0 go build -a -tags netgo
|
|
# docker build --rm=true -t plugins/drone-s3-sync .
|
|
|
|
FROM gliderlabs/alpine:3.1
|
|
RUN apk add --update \
|
|
python \
|
|
py-pip \
|
|
&& pip install awscli
|
|
ADD drone-s3 /bin/
|
|
ENTRYPOINT ["/bin/drone-s3-sync"]
|