Install sdb on nnfw_docker_tizen (#1131)
author이춘석/동작제어Lab(SR)/Senior Engineer/삼성전자 <chunseok.lee@samsung.com>
Tue, 8 May 2018 14:36:55 +0000 (23:36 +0900)
committer최형규/동작제어Lab(SR)/Senior Engineer/삼성전자 <hk0110.choi@samsung.com>
Tue, 8 May 2018 14:36:55 +0000 (23:36 +0900)
1. install sdb on nnfw_docker_tizen
2. install wget and unzip

Signed-off-by: Chunseok Lee <chunseok.lee@samsung.com>
scripts/docker/Dockerfile_tizen

index 1c39380..d56cf78 100644 (file)
@@ -6,3 +6,8 @@ ENV https_proxy $https_proxy
 RUN echo 'deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_16.04/ /' | cat >> /etc/apt/sources.list
 
 RUN apt-get update && apt-get --yes --force-yes install gbs
+
+RUN apt-get --yes --force-yes install wget unzip
+RUN wget http://download.tizen.org/sdk/tizenstudio/official/binary/sdb_3.1.4_ubuntu-64.zip -O sdb.zip
+RUN unzip -d tmp sdb.zip && rm sdb.zip
+RUN cp tmp/data/tools/sdb /usr/bin/. && rm -rf tmp 
\ No newline at end of file