This commit is contained in:
2025-04-04 02:26:47 +08:00
commit c87c288d51
8 changed files with 1200 additions and 0 deletions

10
Dockerfile Executable file
View File

@ -0,0 +1,10 @@
FROM node:lts
WORKDIR /app
COPY . .
RUN npm install
CMD ["npm", "start"]
EXPOSE 3000