gitea-to-ics/Dockerfile

10 lines
153 B
Docker
Raw Permalink Normal View History

2023-12-04 06:53:02 +00:00
FROM python:3-alpine
COPY requirements.txt /app/
2023-12-04 06:58:33 +00:00
RUN pip3 install -r /app/requirements.txt
2023-12-04 06:53:02 +00:00
COPY . /app
2023-12-04 06:54:44 +00:00
ENTRYPOINT ["python", "/app/gitea-to-ics.py"]