File size: 252 Bytes
351bf1e 0f49879 9dff590 2013feb 351bf1e f6952a4 2013feb f6952a4 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM node:alpine
RUN apt-get update && apt-get install -y git
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 |