FreeGPT / Dockerfile
jeff86's picture
Update Dockerfile
df34968 verified
raw
history blame contribute delete
168 Bytes
FROM node:20.9
RUN git clone https://github.com/dark2star/FreeGPT35.git
WORKDIR "FreeGPT35"
RUN npm i
RUN chmod -R 777 /FreeGPT35
EXPOSE 3040
CMD ["node", "app.js"]