add whitelist service

This commit is contained in:
cventastic
2022-09-25 23:54:04 +02:00
parent 48fdbf0aac
commit d30accaa19
5 changed files with 123 additions and 5 deletions

11
dynaconf/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
from python:bullseye
RUN pip install --upgrade pip
RUN pip install flask
RUN pip install flask_sqlalchemy
COPY src src
CMD ["python", "-u", "src/app.py"]