fix: remove global npm installation from Dockerfiles

This commit is contained in:
Nils-Johan Gynther
2026-04-15 21:08:07 +02:00
parent 649f76fa72
commit 3bfd7640cb
2 changed files with 0 additions and 3 deletions
-1
View File
@@ -1,6 +1,5 @@
FROM node:22-alpine AS deps
WORKDIR /app
RUN npm install -g npm@latest
COPY package.json ./
RUN npm install