Spaces:
Running
Running
FROM python:3.9-slim | |
# 设置工作目录 | |
WORKDIR /app | |
# 复制应用代码 | |
COPY . . | |
# 安装依赖 | |
RUN pip install --no-cache-dir aiohttp quart cloudscraper loguru python-dotenv quart-cors | |
# 暴露端口 | |
EXPOSE 5200 | |
# 运行应用 | |
CMD ["python", "app.py"] |