12 lines
253 B
Text
12 lines
253 B
Text
|
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
|