mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-23 20:45:33 +03:00
116 lines
3.2 KiB
Docker
116 lines
3.2 KiB
Docker
#
|
|
# Glances Dockerfile (based on Alpine)
|
|
#
|
|
# https://github.com/nicolargo/glances
|
|
#
|
|
|
|
# WARNING: the versions should be set.
|
|
# Ex: Python 3.11 for Alpine 3.18
|
|
# Note: ENV is for future running containers. ARG for building your Docker image.
|
|
|
|
ARG IMAGE_VERSION=3.18.0
|
|
ARG PYTHON_VERSION=3.11
|
|
|
|
##############################################################################
|
|
# Base layer to be used for building dependencies and the release images
|
|
FROM alpine:${IMAGE_VERSION} as base
|
|
|
|
RUN apk add --no-cache \
|
|
python3 \
|
|
curl \
|
|
lm-sensors \
|
|
wireless-tools \
|
|
smartmontools \
|
|
iputils \
|
|
tzdata
|
|
|
|
##############################################################################
|
|
# BUILD Stages
|
|
##############################################################################
|
|
# BUILD: Base image shared by all build images
|
|
FROM base as build
|
|
ARG PYTHON_VERSION
|
|
|
|
RUN apk add --no-cache \
|
|
python3-dev \
|
|
py3-pip \
|
|
py3-wheel \
|
|
musl-dev \
|
|
linux-headers \
|
|
build-base \
|
|
libzmq \
|
|
zeromq-dev \
|
|
# Required for 'cryptography' dependency of optional requirement 'cassandra-driver' \
|
|
# Refer: https://cryptography.io/en/latest/installation/#alpine \
|
|
# `git` required to clone cargo crates (dependencies)
|
|
git \
|
|
gcc \
|
|
cargo \
|
|
pkgconfig \
|
|
libffi-dev \
|
|
openssl-dev
|
|
|
|
RUN python${PYTHON_VERSION} -m venv --system-site-packages --without-pip venv
|
|
|
|
COPY requirements.txt docker-requirements.txt webui-requirements.txt optional-requirements.txt ./
|
|
|
|
##############################################################################
|
|
# BUILD: Install the minimal image deps
|
|
FROM build as buildMinimal
|
|
|
|
RUN /venv/bin/python3 -m pip install --no-cache-dir \
|
|
# Note: requirements.txt is include by dep
|
|
-r docker-requirements.txt \
|
|
-r webui-requirements.txt
|
|
|
|
##############################################################################
|
|
# BUILD: Install all the deps
|
|
FROM build as buildFull
|
|
|
|
# Required for optional dependency cassandra-driver
|
|
ARG CASS_DRIVER_NO_CYTHON=1
|
|
# See issue 2368
|
|
ARG CARGO_NET_GIT_FETCH_WITH_CLI=true
|
|
|
|
RUN /venv/bin/python3 -m pip install --no-cache-dir \
|
|
-r optional-requirements.txt
|
|
|
|
##############################################################################
|
|
# RELEASE Stages
|
|
##############################################################################
|
|
# Base image shared by all releases
|
|
FROM base as release
|
|
|
|
# Copy source code and config file
|
|
COPY ./docker-compose/glances.conf /etc/glances.conf
|
|
COPY /glances /app/glances
|
|
|
|
# EXPOSE PORT (XMLRPC / WebUI)
|
|
EXPOSE 61209 61208
|
|
|
|
# Define default command.
|
|
WORKDIR /app
|
|
CMD /venv/bin/python3 -m glances -C /etc/glances.conf $GLANCES_OPT
|
|
|
|
################################################################################
|
|
# RELEASE: minimal
|
|
FROM release as minimal
|
|
|
|
COPY --from=buildMinimal /venv /venv
|
|
|
|
################################################################################
|
|
# RELEASE: full
|
|
FROM release as full
|
|
|
|
RUN apk add --no-cache libzmq
|
|
|
|
COPY --from=buildFull /venv /venv
|
|
|
|
################################################################################
|
|
# RELEASE: dev - to be compatible with CI
|
|
FROM full as dev
|
|
|
|
# Forward access and error logs to Docker's log collector
|
|
RUN ln -sf /dev/stdout /tmp/glances-root.log \
|
|
&& ln -sf /dev/stderr /var/log/error.log \
|