From 7218b23e5c02374a2bf0d594a0e3dc6c7ba61193 Mon Sep 17 00:00:00 2001 From: Hariom Balhara Date: Thu, 11 Jul 2024 14:20:18 +0530 Subject: [PATCH] Fix missing embed folder in public (#364) --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index e8a0dad..40828c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,6 +32,8 @@ RUN npx turbo prune --scope=@calcom/web --docker RUN yarn install RUN yarn db-deploy RUN yarn --cwd packages/prisma seed-app-store +# Build and make embed servable from web/public/embed folder +RUN yarn --cwd packages/embeds/embed-core workspace @calcom/embed-core run build RUN yarn --cwd apps/web workspace @calcom/web run build # RUN yarn plugin import workspace-tools && \