Add Dockerfile (#33)
* add Dockerfile * update Readme.md * Fixed : Docker log file * Update vite.config.ts
This commit is contained in:
19
Dockerfile
Normal file
19
Dockerfile
Normal 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"]
|
||||
|
||||
Reference in New Issue
Block a user