5 # Install 'add-apt-repository'
6 RUN apt-get update && apt-get -qqy install software-properties-common
9 RUN apt-get update && apt-get -qqy install build-essential cmake scons git lcov g++-arm-linux-gnueabihf g++-aarch64-linux-gnu
11 # Install extra dependencies (Caffe, nnkit)
12 RUN apt-get update && apt-get -qqy install libboost-all-dev libgflags-dev libgoogle-glog-dev libatlas-base-dev libhdf5-dev
14 # Install protocol buffer
15 RUN apt-get update && apt-get -qqy install libprotobuf-dev protobuf-compiler
18 RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qqy install doxygen graphviz wget unzip clang-format-3.9 python3 python3-pip python3-venv hdf5-tools pylint
19 RUN pip3 install --upgrade pip
20 RUN pip3 install yapf==0.22.0 numpy
22 # Install google test (source)
23 RUN apt-get update && apt-get -qqy install libgtest-dev
25 # Build and install google test static libraries
27 RUN cmake /usr/src/gtest
34 RUN echo 'deb [trusted=yes] http://download.tizen.org/tools/latest-release/Ubuntu_18.04/ /' | cat >> /etc/apt/sources.list
35 RUN apt-get update && apt-get -qqy install gbs
36 RUN wget http://download.tizen.org/sdk/tizenstudio/official/binary/sdb_3.1.4_ubuntu-64.zip -O sdb.zip
37 RUN unzip -d tmp sdb.zip && rm sdb.zip
38 RUN cp tmp/data/tools/sdb /usr/bin/. && rm -rf tmp
40 # Clean archives (to reduce image size)