Dockerfile & docker compose

Adapt configuration for tests purposes
Justfile to simplificate flow
This commit is contained in:
2023-09-07 00:37:59 +02:00
parent f3380139ed
commit 74e6488044
4 changed files with 44 additions and 2 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.10-alpine3.18
RUN pip install requests
WORKDIR /app
COPY notifier.py template.html /app/
# TODO Dev purporse
COPY conf.ini /app/conf.ini
ENTRYPOINT ["python3", "/app/notifier.py"]