From d0c1e8b171c7512745f315dcd6a4a6cae0d5e4db Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Senior=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Thu, 8 Mar 2018 17:25:33 +0900 Subject: [PATCH] Add Dockerfile (#48) This commit adds 'Dockerfile' which allows users to build minimal development environment easily. Signed-off-by: Jonghyun Park --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..db4e7ac --- /dev/null +++ b/Dockerfile @@ -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 -- 2.7.4