summaryrefslogtreecommitdiffstats
path: root/docker-files
diff options
context:
space:
mode:
authorChristopher Viel <Chris-V@users.noreply.github.com>2019-05-31 16:53:23 -0400
committerChristopher Viel <viel.christopher@gmail.com>2019-07-14 18:39:00 -0400
commit61d47fbd1c25c7e4dd46af424ba87064f95f14b5 (patch)
treec9ad473b4d59ea609587fb879d067b85e61b5b07 /docker-files
parent89cb007bdf4a70dbf373ef4891d6b97e4258dcb8 (diff)
Fix missing future in devel-arm Dockerfile
Diffstat (limited to 'docker-files')
-rw-r--r--docker-files/devel-arm/Dockerfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/docker-files/devel-arm/Dockerfile b/docker-files/devel-arm/Dockerfile
index f63800a1..c21ec81b 100644
--- a/docker-files/devel-arm/Dockerfile
+++ b/docker-files/devel-arm/Dockerfile
@@ -12,9 +12,10 @@ 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 \
+ git \
+ && git clone -b develop https://github.com/nicolargo/glances.git \
+ && pip install --no-cache-dir -r glances/requirements.txt bottle \
&& 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