summaryrefslogtreecommitdiffstats
path: root/ci/build_deb/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'ci/build_deb/Dockerfile')
-rw-r--r--ci/build_deb/Dockerfile11
1 files changed, 11 insertions, 0 deletions
diff --git a/ci/build_deb/Dockerfile b/ci/build_deb/Dockerfile
new file mode 100644
index 0000000..bcaeba3
--- /dev/null
+++ b/ci/build_deb/Dockerfile
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+FROM ubuntu:16.04
+RUN apt-get update && apt-get install -y \
+ sudo \
+ git \
+ cmake \
+ debhelper \
+ python-pip
+RUN echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo
+RUN chmod 0440 /etc/sudoers.d/open-sudo