Files
mchat/chatgpt-web-backend/Dockerfile
2026-04-02 17:13:39 +08:00

11 lines
204 B
Docker

FROM chenzhaoyu94/chatgpt-web:v2.10.9 as frontend
FROM arvintian/chatgpt-web-base:v1
COPY --from=frontend /app/public /app/public
ADD dist/server /app/server
EXPOSE 7080
CMD ["/app/server"]