From 6aeb21db8eb21cc89998b820c805dd406969e7cf Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Wed, 24 Jul 2019 17:37:47 -0700 Subject: [PATCH] fix foss-heartbeat Signed-off-by: Jess Frazelle --- foss-heartbeat/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/foss-heartbeat/Dockerfile b/foss-heartbeat/Dockerfile index fd3e596..1424d09 100644 --- a/foss-heartbeat/Dockerfile +++ b/foss-heartbeat/Dockerfile @@ -6,7 +6,8 @@ RUN apk add --no-cache \ gfortran \ lapack \ openjdk8-jre-base \ - py3-numpy + py3-numpy \ + py3-scipy # Install the requirements RUN set -x \ @@ -20,6 +21,7 @@ RUN set -x \ && git clone --depth 1 https://github.com/sarahsharp/foss-heartbeat.git /usr/src/foss-heartbeat \ && ( \ cd /usr/src/foss-heartbeat \ + && cat requirements.txt | grep -v numpy | grep -v scipy | tee requirements.txt \ && pip install -r requirements.txt \ && pip install statistics \ ) \