glances/docker-files/alpine.Dockerfile

126 lines
3.7 KiB
Plaintext
Raw Normal View History

2021-05-15 10:05:56 +00:00
#
# Glances Dockerfile (based on Alpine)
#
# https://github.com/nicolargo/glances
#
# Note: ENV is for future running containers. ARG for building your Docker image.
# WARNING: the Alpine image version and Python version should be set.
# Alpine 3.18 tag is a link to the latest 3.18.x version.
# Be aware that if you change the Alpine version, you may have to change the Python version.
ARG IMAGE_VERSION=3.19
ARG PYTHON_VERSION=3.11
##############################################################################
# Base layer to be used for building dependencies and the release images
FROM alpine:${IMAGE_VERSION} as base
2021-05-15 10:05:56 +00:00
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 \
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 \
# 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
2021-05-15 10:05:56 +00:00
RUN python${PYTHON_VERSION} -m venv venv-build
RUN /venv-build/bin/python${PYTHON_VERSION} -m pip install --upgrade pip
RUN python${PYTHON_VERSION} -m venv --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
2021-05-15 10:05:56 +00:00
RUN /venv-build/bin/python${PYTHON_VERSION} -m pip install --target="/venv/lib/python${PYTHON_VERSION}/site-packages" \
# Note: requirements.txt is include by dep
-r docker-requirements.txt \
-r webui-requirements.txt
2021-05-15 10:05:56 +00:00
2022-09-24 09:38:13 +00:00
##############################################################################
# BUILD: Install all the deps
FROM build as buildFull
2021-05-15 10:05:56 +00:00
# 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-build/bin/python${PYTHON_VERSION} -m pip install --target="/venv/lib/python${PYTHON_VERSION}/site-packages" \
# Note: requirements.txt is include by dep
-r optional-requirements.txt
2021-05-15 10:05:56 +00:00
##############################################################################
# RELEASE Stages
##############################################################################
# Base image shared by all releases
FROM base as release
2021-05-15 10:05:56 +00:00
# Copy source code and config file
COPY ./docker-compose/glances.conf /etc/glances/glances.conf
COPY /glances /app/glances
2021-05-15 10:05:56 +00:00
# Copy binary and update PATH
COPY docker-bin.sh /usr/local/bin/glances
RUN chmod a+x /usr/local/bin/glances
2023-05-20 09:25:40 +00:00
ENV PATH="/venv/bin:$PATH"
2021-05-15 10:05:56 +00:00
# EXPOSE PORT (XMLRPC / WebUI)
EXPOSE 61209 61208
# Define default command.
WORKDIR /app
CMD /venv/bin/python3 -m glances $GLANCES_OPT
2021-05-15 10:05:56 +00:00
################################################################################
# RELEASE: minimal
FROM release as minimal
2021-05-15 10:05:56 +00:00
COPY --from=buildMinimal /venv /venv
2021-05-15 10:05:56 +00:00
################################################################################
# RELEASE: full
FROM release as full
2021-05-15 10:05:56 +00:00
RUN apk add --no-cache libzmq
2021-05-15 10:05:56 +00:00
COPY --from=buildFull /venv /venv
2021-05-15 10:05:56 +00:00
################################################################################
# RELEASE: dev - to be compatible with CI
2022-09-15 09:02:11 +00:00
FROM full as dev
2022-09-24 09:38:13 +00:00
# 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