From 43457df3a908e1415f68f015f50e30fac09e717c Mon Sep 17 00:00:00 2001 From: bilalgursen Date: Sun, 26 Jul 2026 01:08:03 +0300 Subject: [PATCH] =?UTF-8?q?Dockerfile:=20better-sqlite3=20derlemesi=20i?= =?UTF-8?q?=C3=A7in=20python3/make/g++=20ekle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Fable 5 --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 7f1d646..85ca0da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ RUN corepack enable && corepack prepare pnpm@10.8.1 --activate # ── Bağımlılık katmanı ── FROM base AS deps WORKDIR /app +# better-sqlite3 Alpine'de kaynaktan derleniyor (musl için prebuilt yok) +RUN apk add --no-cache python3 make g++ COPY package.json pnpm-lock.yaml ./ RUN pnpm install --frozen-lockfile