@@ -26,6 +26,7 @@ The official Node.js docker image, made with love by the node community.
26
26
- [ ` node:bullseye ` ] ( #nodebullseye )
27
27
- [ ` node:bookworm ` ] ( #nodebookworm )
28
28
- [ ` node:slim ` ] ( #nodeslim )
29
+ - [ ` node:windowsservercore-ltsc<2019|2022> ` ] ( #nodewindowsservercore-ltsc20192022 )
29
30
- [ License] ( #license )
30
31
- [ Supported Docker versions] ( #supported-docker-versions )
31
32
- [ 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
189
190
` process.dlopen ` . To add the missing shared libraries to your image:
190
191
191
192
- 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 `
194
195
195
196
- 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 `
198
199
199
200
To minimize image size, it's uncommon for additional related tools
200
201
(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
224
225
space constraints, we highly recommend using the default image of this
225
226
repository.
226
227
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
+
227
238
## License
228
239
229
240
[ License information] ( https://github.com/nodejs/node/blob/master/LICENSE ) for
0 commit comments