Update dockerfile - numpy (#7111)
author오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Tue, 3 Sep 2019 04:33:20 +0000 (13:33 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Tue, 3 Sep 2019 04:33:20 +0000 (13:33 +0900)
Install python3 numpy for andorid-q test generator
Change python-pip to python3-pip

Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
infra/docker/Dockerfile

index 5eb1a5b..2ca3b44 100644 (file)
@@ -21,8 +21,8 @@ RUN apt-get update && apt-get -qqy install libboost-all-dev libgflags-dev libgoo
 RUN apt-get update && apt-get -qqy install libprotobuf-dev protobuf-compiler
 
 # Additonal tools
-RUN apt-get update && apt-get -qqy install doxygen graphviz wget unzip clang-format-3.9 python3 python-pip hdf5-tools
-RUN pip install yapf==0.22.0
+RUN apt-get update && apt-get -qqy install doxygen graphviz wget unzip clang-format-3.9 python3 python3-pip hdf5-tools
+RUN pip3 install yapf==0.22.0 numpy
 
 # Install google test (source)
 RUN apt-get update && apt-get -qqy install libgtest-dev