Add dashboard.yaml to Dockerfile for configuration

This commit is contained in:
Kellojo 2025-10-12 23:55:23 +02:00
parent 1f7200fd0e
commit 2cb35e057f

View file

@ -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