mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-25 18:23:41 +03:00
605207f154
This adds the `smartmontools` package to the debian based Docker image. This package provides the `smartctl` binary which the `pySMART.smartx` package requires. Without this change, in the Docker container, with `--device=/dev/sda:/dev/sda` passed to `docker run` ``` # python3 Python 3.9.6 (default, Aug 17 2021, 02:38:04) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> from pySMART import DeviceList >>> DeviceList() <DeviceList contents: > ``` With this change: ``` # python3 Python 3.9.6 (default, Aug 17 2021, 02:38:04) [GCC 8.3.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> ifrom pySMART import DeviceList KeyboardInterrupt >>> from pySMART import DeviceList >>> DeviceList() <DeviceList contents: <SCSI device on /dev/sda mod:None sn:AB202000000000001398> > ```
78 lines
1.9 KiB
Docker
78 lines
1.9 KiB
Docker
#
|
|
# Glances Dockerfile (based on Debian)
|
|
#
|
|
# https://github.com/nicolargo/glances
|
|
#
|
|
|
|
FROM python:3.9-slim-buster as build
|
|
|
|
# Install package
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
python3-dev \
|
|
curl \
|
|
build-essential \
|
|
lm-sensors \
|
|
wireless-tools \
|
|
smartmontools \
|
|
iputils-ping && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
FROM build as remoteInstall
|
|
# Install the dependencies beforehand to make them cacheable
|
|
COPY requirements.txt .
|
|
RUN pip3 install --no-cache-dir --user -r requirements.txt
|
|
|
|
# Force install otherwise it could be cached without rerun
|
|
ARG CHANGING_ARG
|
|
RUN pip3 install --no-cache-dir --user glances[all]
|
|
|
|
|
|
FROM build as additional-packages
|
|
|
|
COPY *requirements.txt ./
|
|
|
|
RUN CASS_DRIVER_NO_CYTHON=1 pip3 install --no-cache-dir --user -r optional-requirements.txt
|
|
|
|
|
|
FROM build as dev
|
|
|
|
COPY --from=additional-packages /root/.local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages/
|
|
COPY . /glances
|
|
|
|
# EXPOSE PORT (XMLRPC / WebUI)
|
|
EXPOSE 61209 61208
|
|
|
|
WORKDIR /glances
|
|
|
|
# Define default command.
|
|
CMD python3 -m glances -C /glances/conf/glances.conf $GLANCES_OPT
|
|
|
|
|
|
#Create running images without any building dependency
|
|
FROM python:3.9-slim-buster as minimal
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y --no-install-recommends \
|
|
curl \
|
|
lm-sensors \
|
|
wireless-tools \
|
|
smartmontools \
|
|
iputils-ping && \
|
|
apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY --from=remoteInstall /root/.local/bin /usr/local/bin/
|
|
COPY --from=remoteInstall /root/.local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages/
|
|
|
|
# EXPOSE PORT (XMLRPC / WebUI)
|
|
EXPOSE 61209 61208
|
|
|
|
# Define default command.
|
|
CMD python3 -m glances -C /glances/conf/glances.conf $GLANCES_OPT
|
|
|
|
|
|
FROM minimal as full
|
|
|
|
COPY --from=additional-packages /root/.local/lib/python3.9/site-packages /usr/local/lib/python3.9/site-packages/
|