Cursor-To-OpenAI / Dockerfile
JiuZZZ's picture
Update Dockerfile
3751548 verified
raw
history blame contribute delete
199 Bytes
FROM ghcr.io/jiuz-chn/cursor-to-openai:latest
WORKDIR /app
COPY hf.js /app/hf.js
RUN npm install http-proxy-middleware
ENV HF_PORT=7860
EXPOSE 7860
CMD ["sh", "-c", "node hf.js & npm run start"]