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