From 2cb35e057fcf50275cc3dcb5bd7c9d5c8ac28d85 Mon Sep 17 00:00:00 2001 From: Kellojo <12833426+Kellojo@users.noreply.github.com> Date: Sun, 12 Oct 2025 23:55:23 +0200 Subject: [PATCH] Add dashboard.yaml to Dockerfile for configuration --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c1ae596..57c6ec8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ FROM node:22-alpine WORKDIR /app COPY --from=builder /app/build build/ COPY --from=builder /app/node_modules node_modules/ +COPY dashboard.yaml . COPY package.json . EXPOSE 3000 ENV NODE_ENV=production