Fix: use npm install instead of npm ci

This commit is contained in:
2026-04-15 22:35:15 +02:00
parent 08b606d5b2
commit 12d2d51dc3
+1 -1
View File
@@ -1,7 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --production
RUN npm install --omit=dev
COPY . .
EXPOSE 7849
CMD ["node", "server/index.js"]