adding code and build files for grafana tools

This commit is contained in:
Sheldan
2023-08-27 18:53:56 +02:00
parent 7bbe33bca4
commit 4fc43d1aa7
12 changed files with 180 additions and 0 deletions

7
user-creation/Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM python:3.10-alpine
COPY requirements.txt /opt/app/requirements.txt
WORKDIR /opt/app
RUN pip install -r requirements.txt
COPY . /opt/app
ENTRYPOINT [ "/usr/local/bin/python", "deploy.py" ]