feat: 添加 Docker 支持 #34

This commit is contained in:
imsyy
2023-12-06 11:09:31 +08:00
parent 36c40b7870
commit b90c144a62
4 changed files with 51 additions and 1 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM node:16
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
EXPOSE 6688
CMD ["npm", "start"]