From c8b0989d4ccfa7faf9815b947a49bb403e2b6fb4 Mon Sep 17 00:00:00 2001 From: Sebastjan Date: Sun, 7 Jun 2026 16:16:43 +0200 Subject: [PATCH] Dockerfile: copy client/public and attached_assets to runtime --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index bcba6f1..2023f33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,5 +16,7 @@ ENV NODE_ENV=production COPY package*.json ./ COPY --from=builder /app/node_modules ./node_modules COPY --from=builder /app/dist ./dist +COPY --from=builder /app/client/public ./client/public +COPY --from=builder /app/attached_assets ./attached_assets EXPOSE 5000 CMD ["node", "dist/index.cjs"]