Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
nanoppa/askai
exable324
/
akash
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
akash
/
Dockerfile
nanoppa
Update Dockerfile
4b84886
verified
6 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
217 Bytes
FROM
python:
3.9
-slim
# 设置工作目录
WORKDIR
/app
# 复制应用代码
COPY
. .
# 安装依赖
RUN
pip install --no-cache-dir flask requests
# 暴露端口
EXPOSE
5200
# 运行应用
CMD
[
"python"
,
"app.py"
]