chore: add npm install command in Dockerfiles for both backend and frontend

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