pplx-proxy / Dockerfile
tianlong12's picture
Create Dockerfile
576d2cf verified
raw
history blame
173 Bytes
FROM node:18
WORKDIR /app
COPY package.json .
COPY index.js .
COPY start.sh .
RUN npm install
RUN chmod +x start.sh
EXPOSE 7860
CMD ["/app/start.sh"]