mirror of
https://github.com/drone-plugins/drone-npm.git
synced 2026-06-04 18:23:52 +08:00
15 lines
473 B
Docker
15 lines
473 B
Docker
# escape=`
|
|
FROM microsoft/nanoserver:10.0.14393.1593
|
|
|
|
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
|
|
org.label-schema.name="Drone NPM" `
|
|
org.label-schema.vendor="Drone.IO Community" `
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
|
|
|
# TODO: install required tools
|
|
|
|
ADD release\drone-npm.exe c:\drone-npm.exe
|
|
ENTRYPOINT [ "c:\\drone-npm.exe" ]
|