caldav-email-reminders/Dockerfile
2025-05-01 17:04:01 -05:00

10 lines
242 B
Docker

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"]