FROM python:3-alpine
COPY requirements.txt /app/
RUN pip3 install -r requirements.txt
COPY . /app
ENTRYPOINT ["python", "/app/gitea-to-ics.py"]