Skip to content

Commit d87a3f8

Browse files
committed
feat(windows) use LTSC2019 for windowsservercore
Signed-off-by: Damien Duportal <[email protected]>
1 parent 1fc57e7 commit d87a3f8

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

8/windows/nanoserver-1809/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2323
# THE SOFTWARE.
2424
ARG JAVA_VERSION="8u345-b01"
25-
FROM eclipse-temurin:${JAVA_VERSION}-jdk-windowsservercore-1809 AS core
25+
FROM eclipse-temurin:${JAVA_VERSION}-jdk-windowsservercore-ltsc2019 AS core
2626

2727
# If you pass in a POWERSHELL_VERSION, make sure it ends with a hyphen, leaving it empty will
2828
# use the 'latest'

8/windows/windowsservercore-ltsc2019/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# THE SOFTWARE.
2424

2525
ARG JAVA_VERSION="8u345-b01"
26-
FROM eclipse-temurin:${JAVA_VERSION}-jdk-windowsservercore-1809
26+
FROM eclipse-temurin:${JAVA_VERSION}-jdk-windowsservercore-ltsc2019
2727

2828
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
2929

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ The image has several supported configurations, which can be accessed via the fo
6868
From version 4.11.2, the alpine images are tagged using the alpine OS version as well (i.e. `alpine` ==> `alpine3.16`, `alpine-jdk8` ==> `alpine3.16-jdk8`).
6969

7070
* Windows Images:
71-
* `jdk8-windowsservercore-1809`: Latest version with the newest remoting and Java 8 (based on `eclipse-temurin:8.xxx-jdk-windowsservercore-1809`)
71+
* `jdk8-windowsservercore-ltsc2019`: Latest version with the newest remoting and Java 8 (based on `eclipse-temurin:8.xxx-jdk-windowsservercore-ltsc2019`)
7272
* `jdk8-nanoserver-1809`: Latest version with the newest remoting with Windows Nano Server and Java 8 (based on `eclipse-temurin:8.xxx-jdk-nanoserver-1809`)
7373

7474
The file `docker-bake.hcl` defines all the configuration for Linux images and their associated tags.

build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if(![String]::IsNullOrWhiteSpace($env:REMOTING_VERSION)) {
3636
$RemotingVersion = $env:REMOTING_VERSION
3737
}
3838

39-
# this is the jdk version that will be used for the 'bare tag' images, e.g., jdk8-windowsservercore-1809 -> windowsserver-1809
39+
# this is the jdk version that will be used for the 'bare tag' images, e.g., jdk8-windowsservercore-ltsc2019 -> windowsserver-ltsc2019
4040
$defaultBuild = '8'
4141
$builds = @{}
4242
$env:REMOTING_VERSION = "$RemotingVersion"

0 commit comments

Comments
 (0)