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 \ ) \