11 lines
219 B
Docker
11 lines
219 B
Docker
FROM python:latest
|
|
|
|
RUN apt update && apt install -y lm-sensors watch stress
|
|
RUN pip install glances bottle statsd pysnmp
|
|
|
|
COPY glances.conf /etc/glances/glances.conf
|
|
|
|
RUN useradd -m glances
|
|
USER glances
|
|
|
|
CMD glances -w |