添加新的provider,旧的可以删了

This commit is contained in:
jackyu66git
2025-11-15 03:21:43 +08:00
parent b072334adf
commit af255ee70d
11 changed files with 656 additions and 9 deletions
+20
View File
@@ -0,0 +1,20 @@
FROM python:3.11-slim
ENV PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1
WORKDIR /app
COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app
ENV CONFIG_PATH=/app/config.json \
UVICORN_HOST=0.0.0.0 \
UVICORN_PORT=9009
EXPOSE 9009
CMD ["python", "-m", "main"]