Files
plugin-drone-webhook/Dockerfile.windows
T
Thomas Boerger 645601a176 Updated to current build process (#26)
* Dropped vendoring directory

* Updated to current build process
2018-03-22 09:53:41 +08:00

13 lines
457 B
Docker

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