summaryrefslogtreecommitdiffstats
path: root/docker-files/devel-alpine/Dockerfile
blob: 07a54f3d81bdcb77aef1d65b6f95a99b4a5ea0de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#
# Glances Dockerfile based on Alpine OS
#
# https://github.com/nicolargo/glances
#

# Pull base image.
FROM alpine

# Install Glances (develop branch)
RUN apk add python3 py3-psutil py3-bottle git
RUN git clone -b develop https://github.com/nicolargo/glances.git

# Define working directory.
WORKDIR /glances

# EXPOSE PORT (For XMLRPC)
EXPOSE 61209

# EXPOSE PORT (For Web UI)
EXPOSE 61208

# Define default command.
CMD /usr/bin/python3 -m glances -C /glances/conf/glances.conf $GLANCES_OPT