Files
Renovate Bot a0cdb66c7b
All checks were successful
Build Docker Image / build (pull_request) Successful in 1m40s
Update python Docker tag to v3.14
2026-01-17 23:00:59 +00:00

13 lines
267 B
Docker

FROM python:3.14-slim
WORKDIR /app
ENTRYPOINT ["python3", "-m", "cloudflare_ddns"]
CMD []
# Install requirements in a separate step to not rebuild everything when the requirements are updated.
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .