Add Dockerfile (#48)
author박종현/동작제어Lab(SR)/Senior Engineer/삼성전자 <jh1302.park@samsung.com>
Thu, 8 Mar 2018 08:25:33 +0000 (17:25 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Thu, 8 Mar 2018 08:25:33 +0000 (17:25 +0900)
This commit adds 'Dockerfile' which allows users to build minimal
development environment easily.

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
Dockerfile [new file with mode: 0644]

diff --git a/Dockerfile b/Dockerfile
new file mode 100644 (file)
index 0000000..db4e7ac
--- /dev/null
@@ -0,0 +1,13 @@
+FROM ubuntu:14.04
+
+RUN [ -n ${HTTP_PROXY} ] && echo "Acquire::http::proxy \"${HTTP_PROXY}\";" >> /etc/apt/apt.conf
+RUN [ -n ${HTTPS_PROXY} ] && echo "Acquire::https::proxy \"${HTTPS_PROXY}\";" >> /etc/apt/apt.conf
+
+RUN sed 's/archive.ubuntu.com/kr.archive.ubuntu.com/g' -i /etc/apt/sources.list
+
+RUN apt update
+
+# Install base dependencies
+RUN apt install -y make cmake g++
+# Install nnapi_binding dependencies
+RUN apt install -y libboost-dev