Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
dragg2
/
Gk2
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5ff183d
Gk2
/
Dockerfile
yxmiler
Update Dockerfile
5ff183d
verified
4 months ago
raw
Copy download link
history
blame
Safe
261 Bytes
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"
]