Merge commit 'd8e4449f1009bc03b167c0e5667413585b2b3e53' as 'core'

This commit is contained in:
Du Wenbo
2026-04-04 18:16:49 +08:00
227 changed files with 39179 additions and 0 deletions

11
core/frontend/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"]