summaryrefslogtreecommitdiffstats
path: root/docker-files/Dockerfile
blob: b5eaeb2df1e5d9d8b15037b795eab5c9a396b184 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#
# Glances Dockerfile (based on Ubuntu)
#
# https://github.com/nicolargo/glances
#

ARG ARCH=
FROM ${ARCH}python:3-slim-buster

# Install package
# Must used calibre package to be able to run external module
ENV DEBIAN_FRONTEND noninteractive
RUN \
  apt-get update           && \
  apt-get install -y          \
            curl              \
            gcc               \
            lm-sensors        \
            wireless-tools    \
            iputils-ping && \
  rm -rf /var/lib/apt/lists/*

ARG VERSION
## Install glances
## If version is dev will use git checkout
RUN if [  "$VERSION" = "dev" ] ; then \
    echo Installing dev branch of glances from git; \
    apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/* ; \
    pip3 install psutil bottle ; \
    git clone -b develop https://github.com/nicolargo/glances.git ; \
  else \
    echo Installing glances from pip; \
    pip3 install glances[all]; \
  fi

# Define working directory.
WORKDIR /glances

# EXPOSE PORT (XMLRPC / WebUI)
EXPOSE 61209 61208

# Define default command.
CMD python3 -m glances -C /glances/conf/glances.conf $GLANCES_OPT