Signed-off-by: Sangwan Kwon <sangwan.kwon@samsung.com>
RUN apt-get update && \
apt-get install -qq build-essential git cmake automake
+# g++9
+RUN apt-get update && \
+ apt-get install -y software-properties-common && \
+ add-apt-repository -y ppa:ubuntu-toolchain-r/test && \
+ apt-get update && \
+ apt-get install -y g++-9 && \
+ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 10 && \
+ update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-9 20
+
# glog & gtest
RUN cd /usr/src && \
git clone https://github.com/google/glog.git && \