first commit

This commit is contained in:
sttlab
2026-07-22 14:41:10 +00:00
commit e1577fe061
35 changed files with 1847 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3.14-alpine
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY bootstrap_feeds.py feeds.yaml ./
ENTRYPOINT ["python3", "bootstrap_feeds.py"]