Update Dockerfile with Caffe dependencies (#551)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 6 Jul 2018 06:30:55 +0000 (15:30 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Fri, 6 Jul 2018 06:30:55 +0000 (15:30 +0900)
This commit updates Dockerfile with Caffe dependencies.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
Dockerfile

index 2511287..8ac0ade 100644 (file)
@@ -33,3 +33,15 @@ RUN rm -rf gtest
 
 # Install protocol buffer
 RUN apt install -y libprotobuf-dev protobuf-compiler
+
+# Install extra dependencies
+RUN apt install -y libgflags-dev # Caffe
+RUN apt install -y libgoogle-glog-dev # Caffe
+RUN apt install -y libhdf5-dev # Caffe, nnkit
+RUN apt install -y libboost-system-dev # Caffe
+RUN apt install -y libboost-filesystem-dev # Caffe
+RUN apt install -y libboost-thread-dev # Caffe
+RUN apt install -y libatlas-base-dev # Caffe
+
+# Clean archives (to reduce image size)
+RUN apt-get clean -y