From cdea24d538cfc526dd0fbd6be2339abf4520c064 Mon Sep 17 00:00:00 2001 From: Satsuki Akiba Date: Wed, 4 Jun 2025 17:09:01 +0900 Subject: [PATCH] build: build frontend assets --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 19c4621..cb46227 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,8 @@ COPY . . # Install dependencies RUN bun install +RUN bun run build:frontend + # Expose the port your app runs on EXPOSE 3000