mirror of
https://github.com/thegeeklab/drone-s3-sync.git
synced 2024-11-05 12:50:40 +00:00
12 lines
437 B
Docker
12 lines
437 B
Docker
|
FROM microsoft/nanoserver:latest
|
||
|
MAINTAINER Drone.IO Community <drone-dev@googlegroups.com>
|
||
|
|
||
|
LABEL org.label-schema.version=latest
|
||
|
LABEL org.label-schema.vcs-url="https://github.com/drone-plugins/drone-s3-sync.git"
|
||
|
LABEL org.label-schema.name="Drone S3 Sync"
|
||
|
LABEL org.label-schema.vendor="Drone.IO Community"
|
||
|
LABEL org.label-schema.schema-version="1.0"
|
||
|
|
||
|
ADD release/windows/amd64/drone-s3-sync /bin/
|
||
|
ENTRYPOINT [ "/bin/drone-s3-sync" ]
|