File size: 359 Bytes
b5fe80d 6f65fdb b5fe80d 9663e7e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | FROM python:3.9-slim
WORKDIR /code
# 安装必要的网络工具
RUN apt-get update && apt-get install -y \
curl \
iproute2 \
&& rm -rf /var/lib/apt/lists/*
# 复制依赖文件
COPY requirements.txt .
# 安装依赖
RUN pip install -r requirements.txt
# 复制脚本文件
COPY monitor_ip.py .
# 运行脚本
CMD ["python", "monitor_ip.py"] |