This commit is contained in:
2023-04-12 01:44:01 +08:00
commit e3cfb58501
3 changed files with 73 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM node:18-alpine
WORKDIR /usr/src/app
ENV NODE_ENV=production
COPY . .
EXPOSE 8888
CMD [ "node", "index.js" ]