Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
bobocup
/
ip
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
b5fe80d
ip
/
Dockerfile
bobocup
Update Dockerfile
b5fe80d
verified
over 1 year ago
raw
Copy download link
history
blame
224 Bytes
FROM
python:
3.9
-slim
WORKDIR
/code
# 复制依赖文件
COPY
requirements.txt .
# 安装依赖
RUN
pip install -r requirements.txt
# 复制脚本文件
COPY
monitor_ip.py .
# 运行脚本
CMD
[
"python"
,
"monitor_ip.py"
]