mirror of
https://github.com/nicolargo/glances.git
synced 2024-11-24 13:23:12 +03:00
Merge pull request #1328 from cricket007/fix-docker-arm
Fix Docker ARM build
This commit is contained in:
commit
7947c9a115
@ -5,21 +5,22 @@
|
||||
#
|
||||
|
||||
# Pull base image.
|
||||
FROM easypi/alpine-arm
|
||||
FROM python:2.7-alpine
|
||||
|
||||
# Install Glances (develop branch)
|
||||
RUN apk add python py2-psutil py2-bottle
|
||||
RUN apk add git
|
||||
RUN git clone -b develop https://github.com/nicolargo/glances.git
|
||||
RUN apk add --no-cache --virtual .build_deps \
|
||||
gcc \
|
||||
musl-dev \
|
||||
linux-headers \
|
||||
&& pip install 'psutil>=5.4.7,<5.5.0' bottle==0.12.13 \
|
||||
&& apk del .build_deps
|
||||
RUN apk add --no-cache git && 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
|
||||
# EXPOSE PORT (For Web UI & XMLRPC)
|
||||
EXPOSE 61208 61209
|
||||
|
||||
# Define default command.
|
||||
CMD python -m glances -C /glances/conf/glances.conf $GLANCES_OPT
|
||||
|
Loading…
Reference in New Issue
Block a user