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