10 lines
242 B
Docker
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"]
|