File size: 210 Bytes
f4c16f7
3e04d9a
e4edae9
 
9e233eb
63da093
e4edae9
 
 
1
2
3
4
5
6
7
8
9
FROM node:20.12.2
RUN git clone https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web
WORKDIR "ChatGPT-Next-Web"
COPY . .
ENV HIDE_USER_API_KEY=1
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]