mirror of
https://github.com/woodchen-ink/dnspod-yxip.git
synced 2025-07-18 05:42:08 +08:00
17 lines
277 B
Docker
17 lines
277 B
Docker
FROM python:3.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
# 复制项目文件
|
|
COPY requirements.txt .
|
|
COPY config.py .
|
|
COPY main.py .
|
|
|
|
# 安装依赖
|
|
RUN pip install -r requirements.txt
|
|
|
|
# 创建配置文件和日志目录
|
|
RUN mkdir -p logs && touch .env
|
|
|
|
# 运行程序
|
|
CMD ["python", "main.py"] |