This commit is contained in:
h z
2026-02-13 03:42:04 +00:00
commit 29ae2ba1f4
15 changed files with 2840 additions and 0 deletions

9
Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM node:21-alpine
RUN apk add --no-cache bash
WORKDIR /app
COPY package*.json ./
RUN npm config set registry https://registry.npmmirror.com/
RUN npm install
COPY . .
EXPOSE 3001
CMD ["npm", "start"]