init report && move live_monitor_vue

This commit is contained in:
2024-03-22 13:27:00 +03:00
parent b215f88b2c
commit 4e123e6555
255 changed files with 79351 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
FROM node:lts-alpine
WORKDIR /app
COPY . ./
RUN npm install
RUN npm install -g serve
RUN chown -R node:node /app/node_modules
EXPOSE 8000
CMD ["npm", "run", "dckdev"]