initial commit

This commit is contained in:
Stefan Koelle
2026-08-01 15:06:34 +02:00
parent 912f189e9b
commit e10a31d230
9 changed files with 384 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY sync.py .
ENV PYTHONUNBUFFERED=1
CMD ["python", "sync.py"]