Skip to content

Commit d22f284

Browse files
authored
Merge pull request #198 from foopoiuyt/add_windows_aws
Add Sony AWS safe windows-1809 based image
2 parents ea0f201 + 26f4633 commit d22f284

File tree

5 files changed

+11
-2
lines changed

5 files changed

+11
-2
lines changed

.drone.jsonnet

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ local tags = [
2222
'windows-1909',
2323
'windows-2004',
2424
'windows-20H2',
25+
'aws',
26+
'windows-aws'
2527
];
2628

2729
local pipeline_name(tag) =

Build-All.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param(
22
[Parameter(Mandatory)]
3-
[ValidateSet('1809','1903','1909','2004','20H2','windows-1809','windows-1903','windows-1909','windows-2004','windows-20H2','aws')]
3+
[ValidateSet('1809','1903','1909','2004','20H2','windows-1809','windows-1903','windows-1909','windows-2004','windows-20H2','aws', 'windows-aws')]
44
[string]$tag
55
)
66

Publish-All.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
param(
22
[Parameter(Mandatory)]
3-
[ValidateSet('1809','1903','1909','2004','20H2','windows-1809','windows-1903','windows-1909','windows-2004','windows-20H2','aws')]
3+
[ValidateSet('1809','1903','1909','2004','20H2','windows-1809','windows-1903','windows-1909','windows-2004','windows-20H2','aws', 'windows-aws')]
44
[string]$tag
55
)
66

base/Dockerfile.windows-aws

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM mcr.microsoft.com/windows:1809@sha256:bf5f60839adcb5cfd775243bb86069deb88083217c656c456d90fbb685369aa5
2+
3+
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
4+
5+
RUN Set-ExecutionPolicy -ExecutionPolicy RemoteSigned;
6+

renovate.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"dockerfile": {
88
"ignorePaths": [
99
"base/Dockerfile.aws",
10+
"base/Dockerfile.windows-aws",
1011
"scripts/",
1112
"scm/",
1213
"tools/",

0 commit comments

Comments
 (0)