From 2cb5b25341309f123a8f7701d0c5bf13ded23b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fahri=20Can=20Se=C3=A7er?= Date: Sat, 7 Feb 2026 00:43:44 +0300 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 1f092e0..40cf792 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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