glances/docker-files/alpine.Dockerfile

79 lines
1.7 KiB
Docker
Raw Normal View History

2021-05-15 13:05:56 +03:00
#
# Glances Dockerfile (based on Alpine)
#
# https://github.com/nicolargo/glances
#
FROM alpine:3.13 as build
2021-05-15 13:05:56 +03:00
RUN apk add --no-cache \
python3 \
2021-05-15 13:05:56 +03:00
python3-dev \
py3-pip \
py3-wheel \
2021-05-15 13:05:56 +03:00
musl-dev \
linux-headers \
build-base \
libzmq \
zeromq-dev \
2021-05-15 13:05:56 +03:00
curl \
lm-sensors \
wireless-tools \
iputils
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
2021-05-20 17:54:36 +03:00
COPY *requirements.txt ./
2021-05-15 13:05:56 +03:00
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.8/site-packages /usr/lib/python3.8/site-packages/
2021-05-15 13:05:56 +03:00
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 alpine:3.13 as minimal
2021-05-15 13:05:56 +03:00
RUN apk add --no-cache \
python3 \
2021-05-15 13:05:56 +03:00
curl \
lm-sensors \
wireless-tools \
iputils
COPY --from=remoteInstall /root/.local/bin /usr/local/bin/
COPY --from=remoteInstall /root/.local/lib/python3.8/site-packages /usr/lib/python3.8/site-packages/
2021-05-15 13:05:56 +03:00
# 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.8/site-packages /usr/local/python3.8/site-packages/