mirror of
https://github.com/thegeeklab/drone-s3-sync.git
synced 2024-11-05 12:50:40 +00:00
10 lines
296 B
Docker
10 lines
296 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 alpine:3.3
|
|
RUN apk update && apk add ca-certificates mailcap && rm -rf /var/cache/apk/*
|
|
ADD drone-s3-sync /bin/
|
|
ENTRYPOINT ["/bin/drone-s3-sync"]
|