From ae1b75b51f20513fc27b4996ad2ed790cbde7230 Mon Sep 17 00:00:00 2001 From: Jordan Petridis Date: Tue, 7 Apr 2020 14:45:08 +0300 Subject: [PATCH] windows: switch the image tag to ltsc2019 This should have no functional difference as 1809 is an alias to ltsc2019 but it makes it more explicit that what branch we are tracking --- docker/windows/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/windows/Dockerfile b/docker/windows/Dockerfile index 580ab2e239..7c86152f3b 100644 --- a/docker/windows/Dockerfile +++ b/docker/windows/Dockerfile @@ -1,6 +1,6 @@ # escape=` -FROM 'mcr.microsoft.com/windows/servercore:1809' +FROM 'mcr.microsoft.com/windows/servercore:ltsc2019' # Make sure any failure in PowerShell scripts is fatal SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';"]