This repository has been archived on 2025-11-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cloudflare-dns-docker-old/Dockerfile
2025-11-27 17:31:29 +01:00

14 lines
232 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
COPY cloudflare-dns-docker.py .
RUN pip install -r requirements.txt
ENV PYTHONUNBUFFERED=1
VOLUME ["/var/run/docker.sock"]
CMD ["python", "./cloudflare-dns-docker.py"]