summaryrefslogtreecommitdiff
path: root/scripts/docker/Dockerfile
diff options
context:
space:
mode:
authorChunseok Lee <chunseok.lee@samsung.com>2018-09-18 16:53:40 +0900
committerChunseok Lee <chunseok.lee@samsung.com>2018-09-18 16:53:40 +0900
commit91f4ba45449f700a047a4aeea00b1a7c84e94c75 (patch)
treec60eecdba0861c51010fb0519f8a59668d90a6d2 /scripts/docker/Dockerfile
parent07659ccd9fe7b1cf1547cc6cad78bcf489f0a361 (diff)
downloadnnfw-91f4ba45449f700a047a4aeea00b1a7c84e94c75.tar.gz
nnfw-91f4ba45449f700a047a4aeea00b1a7c84e94c75.tar.bz2
nnfw-91f4ba45449f700a047a4aeea00b1a7c84e94c75.zip
Imported Upstream version 0.2upstream/0.2submit/tizen/20180918.075952
Diffstat (limited to 'scripts/docker/Dockerfile')
-rw-r--r--scripts/docker/Dockerfile6
1 files changed, 5 insertions, 1 deletions
diff --git a/scripts/docker/Dockerfile b/scripts/docker/Dockerfile
index cde173a5c..420c3b61a 100644
--- a/scripts/docker/Dockerfile
+++ b/scripts/docker/Dockerfile
@@ -5,10 +5,14 @@ ENV https_proxy $https_proxy
RUN apt-get update && apt-get --yes --force-yes install build-essential
RUN apt-get update && apt-get --yes --force-yes install scons cmake
-RUN apt-get update && apt-get --yes --force-yes install gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
RUN apt-get update && apt-get --yes --force-yes install libboost-all-dev
RUN apt-get update && apt-get --yes --force-yes install git
RUN apt-get update && apt-get --yes --force-yes install gcc-5-arm-linux-gnueabi g++-5-arm-linux-gnueabi
RUN apt-get update && apt-get --yes --force-yes install lcov
RUN apt-get update && apt-get --yes --force-yes install clang-format-3.9 python-pip
RUN pip install yapf
+RUN apt-get update && apt-get --yes --force-yes install doxygen graphviz
+RUN apt-get update && apt-get --yes --force-yes install wget
+RUN wget https://releases.linaro.org/components/toolchain/binaries/6.3-2017.02/arm-linux-gnueabihf/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf.tar.xz -O gcc.tar.xz -nv
+RUN tar -xf gcc.tar.xz -C /opt/ && rm -rf gcc.tar.xz
+ENV PATH "/opt/gcc-linaro-6.3.1-2017.02-x86_64_arm-linux-gnueabihf/bin:$PATH"