huuuu / Dockerfile
jammss's picture
Update Dockerfile
e03a414 verified
raw
history blame
208 Bytes
FROM node:alpine
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