From 3dfa4f4f6025076055bde88fd3fcf94d73d55191 Mon Sep 17 00:00:00 2001 From: kokopi Date: Sun, 8 Mar 2026 02:57:34 +0900 Subject: [PATCH] fix:css compiling --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index d7da86c..584886b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,8 @@ WORKDIR /app RUN bun add tailwindcss @tailwindcss/cli COPY tailwind.css ./tailwind.css +COPY pages/ ./pages/ +COPY components/ ./components/ RUN bunx @tailwindcss/cli \ -i ./tailwind.css \ @@ -35,6 +37,7 @@ FROM alpine:latest WORKDIR /app COPY --from=builder /app/server . +COPY --from=builder /app/static/ ./static/ COPY --from=css /app/static/css/app.css ./static/css/app.css EXPOSE 3500