Initial commit

This commit is contained in:
Odd Stråbø 2023-07-27 17:00:33 +00:00
commit b406214901
7 changed files with 134 additions and 0 deletions

4
Dockerfile Normal file
View file

@ -0,0 +1,4 @@
FROM python:3.11-bookworm
RUN pip install -r requirements.txt
COPY app.py /app.py
ENTRYPOINT python /app.py