From 179b2e2264a68ca385f76dd7de10acd085ef2171 Mon Sep 17 00:00:00 2001 From: Marc Bonnici Date: Tue, 4 Jun 2019 14:17:37 +0100 Subject: [PATCH] Dockerfile: Update to install all available extras for WA and devlib Install all extras of WA and devliv to be able to use all available features within the docker container. --- extras/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/Dockerfile b/extras/Dockerfile index 4eb3f956..c579db92 100644 --- a/extras/Dockerfile +++ b/extras/Dockerfile @@ -51,8 +51,8 @@ RUN apt-get install -y python3 python3-pip git wget zip openjdk-8-jre-headless v RUN pip3 install pandas # Let's get the two repos we need, and install them -RUN git clone -v https://github.com/ARM-software/devlib.git /tmp/devlib && cd /tmp/devlib && git checkout $DEVLIB_REF && python3 setup.py install -RUN git clone -v https://github.com/ARM-software/workload-automation.git /tmp/wa && cd /tmp/wa && git checkout $WA_REF && python3 setup.py install +RUN git clone -v https://github.com/ARM-software/devlib.git /tmp/devlib && cd /tmp/devlib && git checkout $DEVLIB_REF && python3 setup.py install && pip3 install .[full] +RUN git clone -v https://github.com/ARM-software/workload-automation.git /tmp/wa && cd /tmp/wa && git checkout $WA_REF && python3 setup.py install && pip3 install .[all] # Clean-up RUN rm -R /tmp/devlib /tmp/wa