Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
deeme
/
png
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
png
/
Dockerfile
deeme
Upload 4 files
61a786a
verified
7 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
299 Bytes
# 使用Python 3.11作为基础镜像
FROM
python:
3.11
-slim
# 设置工作目录
WORKDIR
/app
# 复制当前目录中的文件到工作目录中
COPY
. .
# 安装依赖
RUN
pip install -r requirements.txt
# 暴露端口
EXPOSE
7861
# 设置启动命令
CMD
[
"python"
,
"main.py"
]