1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-01-18 12:06:08 +00:00

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.
This commit is contained in:
Marc Bonnici 2019-06-04 14:17:37 +01:00 committed by setrofim
parent 22437359b6
commit 179b2e2264

View File

@ -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