mirror of
https://github.com/KevinMidboe/cloudflare-ddns.git
synced 2026-02-11 02:39:11 +00:00
8 lines
111 B
Docker
8 lines
111 B
Docker
FROM python:3.10-alpine
|
|
|
|
COPY *.py ./
|
|
COPY .env ./
|
|
|
|
RUN pip install requests python-dotenv
|
|
CMD python3 main.py
|