Add Dockerfile (#33)

* add Dockerfile

* update Readme.md

* Fixed : Docker log file

* Update vite.config.ts
This commit is contained in:
Void
2023-02-16 13:39:07 +08:00
committed by GitHub
parent e9db25a970
commit 6646695849
4 changed files with 46 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:lts
# copy resource
RUN mkdir /app
COPY ./ /app
WORKDIR /app
# build
RUN npm install pnpm -g
RUN pnpm bootstrap
WORKDIR /app/service
RUN pnpm install
WORKDIR /app
EXPOSE 1002
EXPOSE 3002
CMD ["/bin/bash","./start.sh"]