Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docker/Dockerfile.windows.1909
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# escape=`
FROM mcr.microsoft.com/powershell:nanoserver-1909
USER ContainerAdministrator

LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
org.label-schema.name="Drone Base" `
org.label-schema.vendor="Drone.IO Community" `
org.label-schema.schema-version="1.0"

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
10 changes: 10 additions & 0 deletions docker/Dockerfile.windows.2004
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# escape=`
FROM mcr.microsoft.com/powershell:nanoserver-2004
USER ContainerAdministrator

LABEL maintainer="Drone.IO Community <drone-dev@googlegroups.com>" `
org.label-schema.name="Drone Base" `
org.label-schema.vendor="Drone.IO Community" `
org.label-schema.schema-version="1.0"

SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
10 changes: 10 additions & 0 deletions docker/manifest.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,16 @@ manifests:
architecture: arm
os: linux
variant: v7
- image: plugins/base:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}windows-2004-amd64
platform:
architecture: amd64
os: windows
version: 2004
- image: plugins/base:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}windows-1909-amd64
platform:
architecture: amd64
os: windows
version: 1909
- image: plugins/base:{{#if build.tag}}{{trimPrefix build.tag "v"}}-{{/if}}windows-1903-amd64
platform:
architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dockerfile": {
"fileMatch": [
"docker/Dockerfile\\.linux\\.(arm|arm64|amd64|multiarch)",
"docker/Dockerfile\\.windows\\.(1803|1809|1903)"
"docker/Dockerfile\\.windows\\.(1803|1809|1903|1909|2004)"
],
"pinDigests": true
},
Expand Down