Files
Renovate Bot 20403b84fd
All checks were successful
Build Docker Image / build (push) Successful in 5m2s
Update python Docker tag to v3.13
2024-10-08 01:00:36 +00:00

13 lines
267 B
Docker

FROM python:3.13-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 . .