@@ -114,8 +114,7 @@ $ docker run -it --rm --name my-running-script -v "$PWD":/usr/src/app -w /usr/sr
114
114
115
115
Prior to 8.7.0 and 6.11.4, the docker images overrode the default npm log
116
116
level from ` warn ` to ` info ` . However, due to improvements to npm and new Docker
117
- patterns (e.g. multi-stage builds) the working group reached
118
- a [ consensus] ( https://github.com/nodejs/docker-node/issues/528 )
117
+ patterns (e.g. multi-stage builds) the working group reached a [ consensus] ( https://github.com/nodejs/docker-node/issues/528 )
119
118
to revert the log level to npm defaults. If you need more verbose output, please
120
119
use one of the following methods to change the verbosity level.
121
120
@@ -192,21 +191,18 @@ One common issue that may arise is a missing shared library required for use of
192
191
` process.dlopen ` . To add the missing shared libraries to your image:
193
192
194
193
- For Alpine v3.18 and earlier, adding the
195
- [ ` libc6-compat ` ] ( https://pkgs.alpinelinux.org/package/v3.18/main/x86/libc6-compat )
196
- package in your Dockerfile is recommended: ` apk add --no-cache libc6-compat `
194
+ [ ` libc6-compat ` ] ( https://pkgs.alpinelinux.org/package/v3.18/main/x86/libc6-compat ) package in your Dockerfile is recommended: ` apk add --no-cache libc6-compat `
197
195
198
196
- Starting from Alpine v3.19, you can use the
199
- [ ` gcompat ` ] ( https://pkgs.alpinelinux.org/package/v3.19/main/x86/gcompat ) package
200
- to add the missing shared libraries: ` apk add --no-cache gcompat `
197
+ [ ` gcompat ` ] ( https://pkgs.alpinelinux.org/package/v3.19/main/x86/gcompat ) package to add the missing shared libraries: ` apk add --no-cache gcompat `
201
198
202
199
To minimize image size, it's uncommon for additional related tools
203
200
(such as ` git ` or ` bash ` ) to be included in Alpine-based images. Using this
204
201
image as a base, add the things you need in your own Dockerfile
205
202
(see the [ ` alpine ` image description] ( https://hub.docker.com/_/alpine/ ) for
206
203
examples of how to install packages if you are unfamiliar).
207
204
208
- To make the image size even smaller, you
209
- can [ bundle without npm/yarn] ( ./docs/BestPractices.md#smaller-images-without-npmyarn ) .
205
+ To make the image size even smaller, you can [ bundle without npm/yarn] ( ./docs/BestPractices.md#smaller-images-without-npmyarn ) .
210
206
211
207
### ` node:bullseye `
212
208
@@ -256,8 +252,7 @@ upgrade your Docker daemon.
256
252
257
253
## Supported Node.js versions
258
254
259
- This project will support Node.js versions as still under active support as per
260
- the [ Node.js release schedule] ( https://github.com/nodejs/Release ) .
255
+ This project will support Node.js versions as still under active support as per the [ Node.js release schedule] ( https://github.com/nodejs/Release ) .
261
256
262
257
## Governance and Current Members
263
258
0 commit comments