add package upgrade and dedicated user to dockerfile
This commit is contained in:
parent
02c24b67f7
commit
ecfd783299
1 changed files with 4 additions and 1 deletions
|
@ -3,10 +3,13 @@ WORKDIR /app
|
||||||
ADD ./app/requirements.txt .
|
ADD ./app/requirements.txt .
|
||||||
RUN pip install -r /app/requirements.txt
|
RUN pip install -r /app/requirements.txt
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
|
apt-get -y upgrade && \
|
||||||
apt-get -y install \
|
apt-get -y install \
|
||||||
monitoring-plugins \
|
monitoring-plugins \
|
||||||
monitoring-plugins-contrib && \
|
monitoring-plugins-contrib && \
|
||||||
apt-get clean
|
apt-get clean
|
||||||
|
|
||||||
|
RUN useradd monitoring -m
|
||||||
|
|
||||||
ADD ./app .
|
ADD ./app .
|
||||||
USER daemon
|
USER monitoring
|
||||||
|
|
Loading…
Reference in a new issue