add dockerfile

This commit is contained in:
2023-01-11 19:06:20 +08:00
commit 465bcb3eeb
56 changed files with 32976 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM node:latest
WORKDIR /work
COPY . /work
RUN npm install
EXPOSE 3000
ENTRYPOINT ["npm", "run"]
CMD ["start-local"]