# # 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.24 ARG PYTHON_VERSION=3.14 ############################################################################## # Base layer to be used for building dependencies and the release images FROM alpine:${IMAGE_VERSION} AS base RUN <