initial commit
This commit is contained in:
parent
be416c80ca
commit
2bcd14006c
17 changed files with 473 additions and 0 deletions
12
Dockerfile
Normal file
12
Dockerfile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue