@@ -26,6 +26,7 @@ The official Node.js docker image, made with love by the node community.
2626 - [ ` node:bullseye ` ] ( #nodebullseye )
2727 - [ ` node:bookworm ` ] ( #nodebookworm )
2828 - [ ` node:slim ` ] ( #nodeslim )
29+ - [ ` node:windowsservercore-ltsc<2019|2022> ` ] ( #nodewindowsservercore-ltsc20192022 )
2930- [ License] ( #license )
3031- [ Supported Docker versions] ( #supported-docker-versions )
3132- [ Supported Node.js versions] ( #supported-nodejs-versions )
@@ -189,12 +190,12 @@ One common issue that may arise is a missing shared library required for use of
189190` process.dlopen ` . To add the missing shared libraries to your image:
190191
191192- For Alpine v3.18 and earlier, adding the
192- [ ` libc6-compat ` ] ( https://pkgs.alpinelinux.org/package/v3.18/main/x86/libc6-compat )
193- package in your Dockerfile is recommended: ` apk add --no-cache libc6-compat `
193+ [ ` libc6-compat ` ] ( https://pkgs.alpinelinux.org/package/v3.18/main/x86/libc6-compat )
194+ package in your Dockerfile is recommended: ` apk add --no-cache libc6-compat `
194195
195196- Starting from Alpine v3.19, you can use the
196- [ ` gcompat ` ] ( https://pkgs.alpinelinux.org/package/v3.19/main/x86/gcompat ) package
197- to add the missing shared libraries: ` apk add --no-cache gcompat `
197+ [ ` gcompat ` ] ( https://pkgs.alpinelinux.org/package/v3.19/main/x86/gcompat ) package
198+ to add the missing shared libraries: ` apk add --no-cache gcompat `
198199
199200To minimize image size, it's uncommon for additional related tools
200201(such as ` git ` or ` bash ` ) to be included in Alpine-based images. Using this
@@ -224,6 +225,16 @@ in an environment where *only* the Node.js image will be deployed and you have
224225space constraints, we highly recommend using the default image of this
225226repository.
226227
228+ ### ` node:windowsservercore-ltsc<2019|2022> `
229+
230+ This image is based on Windows Server Core and is the recommended image
231+ for users who require Windows-based environments.
232+ It is available in two versions:` node:windowsservercore-ltsc2019 ` and ` node:windowsservercore-ltsc2022 ` .
233+ You can run this image on Windows Server 2019 or Windows Server 2022 or on Windows desktop versions
234+ that support Windows containers.
235+ Keep in mind that these images are significantly larger than the Linux-based
236+ variants due to the Windows Server Core base.
237+
227238## License
228239
229240[ License information] ( https://github.com/nodejs/node/blob/master/LICENSE ) for
0 commit comments