Spaces:
Running
Running
File size: 261 Bytes
5ff183d 71b276e 5ff183d 71b276e 5ff183d 71b276e 5ff183d 71b276e 5ff183d 71b276e 5ff183d 71b276e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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"] |