[docker] Add ubuntu16.04/18.04 runtime Dockerfile
authorJeonChangMin <imsameperson@gmail.com>
Thu, 10 Sep 2020 17:54:10 +0000 (02:54 +0900)
committerMyungJoo Ham <myungjoo.ham@samsung.com>
Thu, 15 Oct 2020 14:04:11 +0000 (23:04 +0900)
Add Dockerfile for ubuntu16.04/18.04 nnstreamer runtime using ppa

Signed-off-by: JeonChangMin <imsameperson@gmail.com>
docker/runtime/ubuntu16.04/Dockerfile [new file with mode: 0644]
docker/runtime/ubuntu18.04/Dockerfile [new file with mode: 0644]

diff --git a/docker/runtime/ubuntu16.04/Dockerfile b/docker/runtime/ubuntu16.04/Dockerfile
new file mode 100644 (file)
index 0000000..c57d81f
--- /dev/null
@@ -0,0 +1,7 @@
+FROM ubuntu:16.04
+
+RUN apt update
+RUN apt install -y software-properties-common
+RUN apt-add-repository ppa:nnstreamer/ppa
+RUN apt update
+RUN apt install -y nnstreamer
diff --git a/docker/runtime/ubuntu18.04/Dockerfile b/docker/runtime/ubuntu18.04/Dockerfile
new file mode 100644 (file)
index 0000000..14013da
--- /dev/null
@@ -0,0 +1,7 @@
+FROM ubuntu:18.04
+
+RUN apt update
+RUN apt install -y software-properties-common
+RUN apt-add-repository ppa:nnstreamer/ppa
+RUN apt update
+RUN apt install -y nnstreamer