Update Dockerfile
All checks were successful
CI / build (push) Successful in 1m5s
Deploy Backend / build-and-deploy (push) Successful in 7s

This commit is contained in:
2026-02-07 00:43:44 +03:00
parent 02ecfada63
commit 2cb5b25341

View File

@@ -7,6 +7,7 @@ WORKDIR /app
COPY package*.json ./
# Install dependencies
RUN apk add --no-cache python3 make g++
RUN npm ci
# Copy source code
@@ -27,6 +28,7 @@ WORKDIR /app
COPY package*.json ./
# Install production dependencies only
RUN apk add --no-cache python3 make g++
RUN npm ci --only=production
# Copy Prisma schema and generate client