Add matrix, cloud, gitea

This commit is contained in:
2026-01-14 10:33:07 -06:00
parent e340288d49
commit 9ca1667a31
24 changed files with 356 additions and 102 deletions

10
proxy/ddns/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY ddns_updater.py .
ENTRYPOINT ["python", "ddns_updater.py"]