initial commit

This commit is contained in:
bsod 2022-11-19 22:41:21 +01:00
parent be416c80ca
commit 2bcd14006c
17 changed files with 473 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM python:3
WORKDIR /app
ADD ./app/requirements.txt .
RUN pip install -r /app/requirements.txt
RUN apt-get update && \
apt-get -y install \
monitoring-plugins \
monitoring-plugins-contrib && \
apt-get clean
ADD ./app .
USER daemon