From de4bc34019faa995cc2ebbcb267fffdd8ebc830f Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Wed, 29 Apr 2026 15:51:38 +0700 Subject: [PATCH] Copy data.db from builder to runner (emdash init creates it at build time) Co-Authored-By: Claude Opus 4.6 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ad70bb3..80965f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -29,6 +29,7 @@ USER astro COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/dist ./dist +COPY --from=builder /app/data.db ./data.db EXPOSE 4321