From a458082c5d81193897fa6db01661ab90b22fd001 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 29 Apr 2026 13:25:04 +0700 Subject: [PATCH] Run emdash init at build time to initialize database before runtime Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 59ef273..0c644b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . -RUN pnpm build +RUN pnpm build && pnpm exec emdash init FROM deps AS runner