gpt4api / Dockerfile
getapi's picture
Update Dockerfile
4466440 verified
raw
history blame
197 Bytes
FROM node:20
RUN git clone https://github.com/chokiproai/GPT4-API # https://github.com/prolapser/GPT4-API.git
WORKDIR "GPT4-API"
RUN npm i
RUN npm run build
EXPOSE 7680
CMD ["npm", "run", "start"]