Move dockerfiles to docker folder

This commit is contained in:
Thomas Boerger 2019-01-20 20:45:24 +01:00
parent 0595d564d0
commit c28514592d
No known key found for this signature in database
GPG Key ID: 09745AFF9D63C79B
5 changed files with 1 additions and 12 deletions

View File

@ -1,9 +0,0 @@
FROM plugins/base:multiarch
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" \
org.label-schema.name="Drone S3 Sync" \
org.label-schema.vendor="Drone.IO Community" \
org.label-schema.schema-version="1.0"
ADD release/linux/i386/drone-s3-sync /bin/
ENTRYPOINT ["/bin/drone-s3-sync"]

View File

@ -1,12 +1,10 @@
# escape=`
FROM microsoft/nanoserver:10.0.14393.1593
FROM plugins/base:windows-amd64
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
org.label-schema.name="Drone S3 Sync" `
org.label-schema.vendor="Drone.IO Community" `
org.label-schema.schema-version="1.0"
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
ADD release\drone-s3-sync.exe c:\drone-s3-sync.exe
ENTRYPOINT [ "c:\\drone-s3-sync.exe" ]