fd56e03
e03a414
9dff590
2013feb
351bf1e
f6952a4
2013feb
f6952a4 |
|
FROM node:18
RUN git clone https://github.com/Payhon/chatgpt-proxy.git
RUN mkdir -p /usr/src
WORKDIR /usr/src
COPY . /usr/src
RUN npm install
EXPOSE 3000
CMD npm run start -- --port 3000 --host 0.0.0.0 |