feat: initial EMS frontend template from ems-core v1.1.0

This commit is contained in:
Du Wenbo
2026-04-05 15:44:40 +08:00
commit 7811bc1f08
112 changed files with 21450 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 3000
CMD ["npm", "run", "dev", "--", "--host", "0.0.0.0"]