File size: 482 Bytes
7931a43 a45f02e 9fd1dfc a45f02e 3e4c363 a45f02e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM node:20 AS build
# 添加 git,以便之后能从GitHub克隆项目
RUN apt install git
# 从 GitHub 克隆项目到 /app 目录下
RUN git clone https://github.com/Dooy/chatgpt-web-midjourney-proxy.git /app
COPY ./logo.png /app/web/src/assets/logo.png
COPY ./logo.png /app/web/src/public/favicon.ico
COPY ./home.vue /app/web/src/pages/home.vue
RUN yarn install && yarn run build
RUN cd web && yarn install && yarn run build
EXPOSE 3000
CMD yarn run start
|