This commit is contained in:
Marco Pedone 2025-08-07 19:09:29 +02:00
parent 616a5ff412
commit 1fba08c385

View file

@ -6,7 +6,7 @@ FROM base AS deps
RUN apk add --no-cache libc6-compat openssl RUN apk add --no-cache libc6-compat openssl
WORKDIR /app WORKDIR /app
COPY package*.json package-lock.json* ./ COPY package*.json package-lock.json* ./
RUN npm ci --omit=dev RUN npm ci
# Builder stage # Builder stage
# This stage is used to build the application # This stage is used to build the application