Initial commit

This commit is contained in:
Leon Haag-Fank 2024-10-18 21:05:55 +02:00
commit 0531e7637f
4 changed files with 98 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM python:3
MAINTAINER Leon Haag-Fank "admin@haagfank.de"
VOLUME /data
WORKDIR /usr/src/app
COPY fp-ics requirements.txt ./
RUN pip install -r requirements.txt
ENTRYPOINT ["/usr/bin/python", "fp-ics"]