init: oc-monitor dashboard

This commit is contained in:
mango
2026-02-22 17:37:11 +08:00
commit 2ded3f5f95
7 changed files with 550 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:22-alpine
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY server/ server/
COPY public/ public/
RUN mkdir -p data
EXPOSE 3800
CMD ["node", "server/index.js"]