quickrelay2 / Dockerfile
Transformer
feat: add proxy service
7ca28aa
raw
history blame contribute delete
202 Bytes
FROM python:3.9-slim
# 安装依赖
RUN pip install fastapi uvicorn "httpx[socks]"
# 复制应用代码
COPY app.py .
# 启动服务
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]