Initial Code Commit

This commit is contained in:
wagesj45 2025-05-01 17:04:01 -05:00
commit 3b709107bb
5 changed files with 386 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM python:3.11-slim
# install only Python deps
RUN pip install --no-cache-dir requests icalendar python-dateutil
WORKDIR /app
COPY sync.py dispatch.py entrypoint.sh /app/
RUN chmod +x /app/entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]