glances/docker-files/alpine.Dockerfile

148 lines
4.4 KiB
Plaintext
Raw Normal View History

2021-05-15 10:05:56 +00:00
#
# 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
FROM alpine:${IMAGE_VERSION} as build
ARG PYTHON_VERSION
2021-05-15 10:05:56 +00:00
RUN apk add --no-cache \
python3 \
2021-05-15 10:05:56 +00:00
python3-dev \
py3-pip \
py3-wheel \
2021-05-15 10:05:56 +00:00
musl-dev \
linux-headers \
build-base \
libzmq \
zeromq-dev \
2021-05-15 10:05:56 +00:00
curl \
lm-sensors \
wireless-tools \
smartmontools \
iputils \
tzdata \
# Required for 'cryptography' dependency of optional requirement 'cassandra-driver' \
# Refer: https://cryptography.io/en/latest/installation/#alpine \
# `git` required to clone cargo crates (dependencies)
gcc libffi-dev openssl-dev cargo pkgconfig git
2021-05-15 10:05:56 +00:00
2022-09-24 09:38:13 +00:00
##############################################################################
# Install the dependencies beforehand to make them cacheable
2021-05-15 10:05:56 +00:00
2022-09-24 09:38:13 +00:00
FROM build as buildRequirements
ARG PYTHON_VERSION
2021-05-15 10:05:56 +00:00
COPY requirements.txt .
RUN pip3 install --no-cache-dir --user -r requirements.txt
2022-10-17 21:15:34 +00:00
# Minimal means no webui, but it break what is done previously (see #2155)
# So install the webui requirements...
COPY webui-requirements.txt .
2022-10-17 21:15:34 +00:00
RUN pip3 install --no-cache-dir --user -r webui-requirements.txt
2022-09-24 09:38:13 +00:00
# As minimal image we want to monitor others docker containers
RUN pip3 install --no-cache-dir --user docker
2021-05-15 10:05:56 +00:00
# Force install otherwise it could be cached without rerun
ARG CHANGING_ARG
2022-09-24 09:38:13 +00:00
RUN pip3 install --no-cache-dir --user glances
2021-05-15 10:05:56 +00:00
2022-09-24 09:38:13 +00:00
##############################################################################
2021-05-15 10:05:56 +00:00
2022-11-03 14:26:43 +00:00
FROM build as buildOptionalRequirements
ARG PYTHON_VERSION
2021-05-15 10:05:56 +00:00
# Required for optional dependency cassandra-driver
ENV CASS_DRIVER_NO_CYTHON=1
# See issue 2368
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
2022-11-03 14:26:43 +00:00
COPY requirements.txt .
2022-09-24 09:38:13 +00:00
COPY optional-requirements.txt .
RUN pip3 install --no-cache-dir --user -r optional-requirements.txt
2021-05-15 10:05:56 +00:00
##############################################################################
2022-09-15 09:02:11 +00:00
# full image
##############################################################################
2021-05-15 10:05:56 +00:00
2022-09-15 09:02:11 +00:00
FROM build as full
ARG PYTHON_VERSION
2021-05-15 10:05:56 +00:00
2022-09-24 09:38:13 +00:00
COPY --from=buildRequirements /root/.local/bin /usr/local/bin/
COPY --from=buildRequirements /root/.local/lib/python${PYTHON_VERSION}/site-packages /usr/lib/python${PYTHON_VERSION}/site-packages/
COPY --from=buildOptionalRequirements /root/.local/lib/python${PYTHON_VERSION}/site-packages /usr/lib/python${PYTHON_VERSION}/site-packages/
COPY ./docker-compose/glances.conf /etc/glances.conf
2021-05-15 10:05:56 +00:00
# EXPOSE PORT (XMLRPC / WebUI)
EXPOSE 61209 61208
# Define default command.
WORKDIR /glances
CMD python3 -m glances -C /etc/glances.conf $GLANCES_OPT
2021-05-15 10:05:56 +00:00
##############################################################################
# minimal image
##############################################################################
2021-05-15 10:05:56 +00:00
2022-09-15 09:02:11 +00:00
# Create running images without any building dependency
FROM alpine:${IMAGE_VERSION} as minimal
ARG PYTHON_VERSION
2021-05-15 10:05:56 +00:00
RUN apk add --no-cache \
python3 \
py3-packaging \
py3-dateutil \
py3-requests \
2021-05-15 10:05:56 +00:00
curl \
lm-sensors \
wireless-tools \
smartmontools \
iputils \
tzdata
2021-05-15 10:05:56 +00:00
2022-09-24 09:38:13 +00:00
COPY --from=buildRequirements /root/.local/bin /usr/local/bin/
COPY --from=buildRequirements /root/.local/lib/python${PYTHON_VERSION}/site-packages /usr/lib/python${PYTHON_VERSION}/site-packages/
COPY ./docker-compose/glances.conf /etc/glances.conf
2021-05-15 10:05:56 +00:00
# EXPOSE PORT (XMLRPC / WebUI)
EXPOSE 61209 61208
2021-05-15 10:05:56 +00:00
# Define default command.
WORKDIR /glances
CMD python3 -m glances -C /etc/glances.conf $GLANCES_OPT
2021-05-15 10:05:56 +00:00
##############################################################################
2022-09-24 09:38:13 +00:00
# dev image
##############################################################################
2021-05-15 10:05:56 +00:00
2022-09-15 09:02:11 +00:00
FROM full as dev
2022-09-24 09:38:13 +00:00
ARG PYTHON_VERSION
COPY --from=buildRequirements /root/.local/bin /usr/local/bin/
COPY --from=buildRequirements /root/.local/lib/python${PYTHON_VERSION}/site-packages /usr/lib/python${PYTHON_VERSION}/site-packages/
COPY --from=buildOptionalRequirements /root/.local/lib/python${PYTHON_VERSION}/site-packages /usr/lib/python${PYTHON_VERSION}/site-packages/
COPY ./docker-compose/glances.conf /etc/glances.conf
2022-05-26 08:27:21 +00:00
2022-09-24 09:38:13 +00:00
# Copy the current Glances source code
COPY . /glances
# EXPOSE PORT (XMLRPC / WebUI)
EXPOSE 61209 61208
# 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
2022-09-24 09:38:13 +00:00
# Define default command.
WORKDIR /glances
2022-09-24 09:38:13 +00:00
CMD python3 -m glances -C /etc/glances.conf $GLANCES_OPT