Files
plugin-drone-download/Dockerfile.windows
T
Thomas Boerger b6fa684ea3 Initial commit
2018-04-23 01:20:54 +02:00

13 lines
461 B
Docker

# escape=`
FROM microsoft/nanoserver:10.0.14393.1593
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
org.label-schema.name="Drone Download" `
org.label-schema.vendor="Drone.IO Community" `
org.label-schema.schema-version="1.0"
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
ADD release\drone-download.exe c:\drone-download.exe
ENTRYPOINT [ "c:\\drone-download.exe" ]