This commit is contained in:
Daniel
2026-04-01 20:06:17 +08:00
parent ae3e6f717b
commit afbcd99224
596 changed files with 62930 additions and 13 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM docker.m.daocloud.io/library/node:20-alpine
WORKDIR /app
ARG NPM_REGISTRY=https://registry.npmmirror.com
ENV npm_config_registry=${NPM_REGISTRY}
ENV NODE_ENV=production
COPY package*.json ./
RUN npm config set registry ${NPM_REGISTRY} && npm ci --omit=dev
COPY . .
EXPOSE 5180
CMD ["npm", "run", "start"]