chatgptfree / Dockerfile
ngoctuanai's picture
Create Dockerfile
900bd5f
raw
history blame
No virus
156 Bytes
FROM node:18
RUN git clone https://github.com/chokiproai/chatgpt.git
WORKDIR "chatgpt"
RUN npm i
RUN npm run build
EXPOSE 3000
CMD ["npm", "run", "start"]