From 7e69efae5bf165f0df2a3aa4e5ad5a90594a39a9 Mon Sep 17 00:00:00 2001 From: Kunthawat Greethong Date: Sun, 3 May 2026 11:15:43 +0700 Subject: [PATCH] Dockerfile: build core package directly instead of using workspace filter --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d2fde4e..e783e8a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,10 +16,10 @@ WORKDIR /app RUN git clone --depth=1 https://git.moreminimore.com/kunthawat/emdash-patch-imageupload.git emdash-source WORKDIR /app/emdash-source -# Build only the emdash package (it's named "emdash" not "@emdash-cms/core") +# Build only the core package directly (not via workspace filter) RUN corepack enable && corepack prepare pnpm@9.0.0 --activate RUN pnpm install -RUN pnpm build --filter emdash +RUN cd packages/core && pnpm build # Return to app and copy source WORKDIR /app