diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2655b95 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3-alpine + +COPY requirements.txt /app/ + +RUN pip3 install -r requirements.txt + +COPY . /app + +CMD python /app/gitea-to-ics.py