mirror of
https://github.com/drone-plugins/drone-manifest.git
synced 2026-07-06 16:02:31 +08:00
40b2fb9008
* Add the os to docker tags, simplified dockerfiles * Added volume and workspace to readme example
15 lines
625 B
Docker
15 lines
625 B
Docker
# escape=`
|
|
FROM microsoft/nanoserver:10.0.14393.1593
|
|
|
|
LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
|
|
org.label-schema.name="Drone Manifest" `
|
|
org.label-schema.vendor="Drone.IO Community" `
|
|
org.label-schema.schema-version="1.0"
|
|
|
|
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
|
|
|
|
RUN Invoke-WebRequest 'https://github.com/estesp/manifest-tool/releases/download/v0.7.0/manifest-tool-windows-amd64.exe' -OutFile 'c:\Windows\System32\manifest-tool.exe';
|
|
|
|
ADD drone-manifest.exe c:\drone-manifest.exe
|
|
ENTRYPOINT [ "c:\\drone-manifest.exe" ]
|