Initial Code Commit
This commit is contained in:
commit
3b709107bb
5 changed files with 386 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal 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"]
|
Loading…
Add table
Add a link
Reference in a new issue