We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b4ac2a commit 4a9e619Copy full SHA for 4a9e619
Dockerfile
@@ -18,7 +18,9 @@ RUN NODE_ENV=build npm run build
18
FROM node:22-alpine AS runner
19
20
# Delete default node user first (combine with system upgrade package installation to reduce layers)
21
-RUN deluser --remove-home node && apk upgrade -a && apk add --no-cache su-exec curl shadow
+RUN deluser --remove-home node && apk upgrade && apk add --no-cache su-exec curl shadow
22
+# Delete ping group and utility as this shouldnt be needed and conflicts with GID 999
23
+RUN delgroup ping && apk del iputils
24
25
WORKDIR /app
26
0 commit comments