cursor-ai-proxy / Dockerfile
isididiidid's picture
Update Dockerfile
636f66e verified
raw
history blame
259 Bytes
FROM ghcr.io/jiuz-chn/cursor-to-openai:latest
WORKDIR /app
COPY hf.js /app/hf.js
RUN npm install http-proxy-middleware axios
ENV HF_PORT=7860
# 代理池环境变量,支持多个代理,用逗号分隔
ENV PROXY=""
EXPOSE 7860
CMD ["node", "hf.js"]