From 4c236f8b6542909365013b0ea6feca07373adbb8 Mon Sep 17 00:00:00 2001 From: Talon Date: Mon, 21 Apr 2025 22:25:00 +0200 Subject: [PATCH] Update dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6dd448e..f43ca7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /app COPY package*.json ./ # Install dependencies -RUN npm ci +RUN npm install # Copy source files COPY . . @@ -30,7 +30,7 @@ RUN addgroup -g 1001 -S nodejs && \ # Install only production dependencies COPY package*.json ./ -RUN npm ci --omit=dev +RUN npm install --omit=dev # Copy built application from the build stage COPY --from=build /app/build ./build