FreeGPT / Dockerfile
blfm's picture
Create Dockerfile
afecfbd verified
raw
history blame
170 Bytes
FROM node:20.9
RUN git clone https://github.com/missuo/FreeGPT35
WORKDIR "FreeGPT35"
COPY . .
RUN npm i
RUN chmod -R 777 /FreeGPT35
EXPOSE 3040
CMD ["node", "app.js"]