summaryrefslogtreecommitdiff
path: root/Dockerfile.in
diff options
context:
space:
mode:
authorPaul Bütow <pbuetow@mimecast.com>2018-12-19 16:29:02 +0000
committerPaul Bütow <pbuetow@mimecast.com>2018-12-19 16:29:02 +0000
commit2de8687de485717a6a2b12bc186f03e4c9d7b5ab (patch)
tree6856cd49db85c4106d6af5a0165ceb8dd1391356 /Dockerfile.in
parent5c766d32cb04dbceeaddf97c8f3b5f058eaecab8 (diff)
initial docker build support
Diffstat (limited to 'Dockerfile.in')
-rw-r--r--Dockerfile.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/Dockerfile.in b/Dockerfile.in
new file mode 100644
index 0000000..689c831
--- /dev/null
+++ b/Dockerfile.in
@@ -0,0 +1,11 @@
+FROM centos:7
+
+RUN yum install -v -y gcc systemtap yum-utils
+ENV KERNEL KERNELVERSION
+RUN yum install -v -y kernel-${KERNEL}
+RUN debuginfo-install -v -y kernel-${KERNEL}
+
+ADD ./ /ioriot
+WORKDIR /ioriot
+VOLUME /opt
+