docker fix

This commit is contained in:
2026-06-02 01:11:57 +02:00
parent d2a8072a47
commit 7e3ac4d1d4
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -3,8 +3,8 @@ FROM node:20-alpine
WORKDIR /app
# Install dependencies first (layer cache)
COPY package.json package-lock.json* ./
RUN npm ci --omit=dev
COPY package.json ./
RUN npm install --omit=dev
# Copy source
COPY src/ ./src/