refactor(docker): Remove global npm installation from Dockerfiles

This commit is contained in:
Daniel Hiller
2026-04-18 13:32:22 +00:00
parent 20eb57de4c
commit 4e23f3c8a9
2 changed files with 3 additions and 6 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
FROM node:22-alpine
RUN apk -U upgrade \
&& apk add bash build-base python3 xdg-utils --no-cache \
&& npm install npm --global
&& apk add bash build-base python3 xdg-utils --no-cache
WORKDIR /app