Skip to content

Commit 6db04e5

Browse files
committed
Default to Windows Server 2022 base tag on Windows 11 hosts
1 parent edcedca commit 6db04e5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ue4docker/infrastructure/WindowsUtils.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ class WindowsUtils(object):
1313
_minimumRequiredBuild = 17763
1414

1515
# This lookup table is based on the list of valid tags from <https://hub.docker.com/r/microsoft/windowsservercore/>
16-
# and list of build-to-release mapping from https://docs.microsoft.com/en-us/windows/release-health/release-information
16+
# and list of build-to-release mappings from the following pages:
17+
# - https://docs.microsoft.com/en-us/windows/release-health/release-information
18+
# - https://docs.microsoft.com/en-us/windows/release-health/windows11-release-information
1719
_knownTagsByBuildNumber = {
1820
17763: "ltsc2019",
1921
18362: "1903",
@@ -22,6 +24,7 @@ class WindowsUtils(object):
2224
19042: "20H2",
2325
19043: "21H1",
2426
20348: "ltsc2022",
27+
22000: "ltsc2022",
2528
}
2629

2730
_knownTags = list(_knownTagsByBuildNumber.values())

0 commit comments

Comments
 (0)