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