summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-05-25 01:30:40 +0700
committerGitHub <noreply@github.com>2018-05-25 01:30:40 +0700
commit1033e7876a7f1f0be8150047852804a66ee4dd23 (patch)
treeee6d9c81387c90e3e59e18b35761052bf57c397b /Dockerfile
parent17de291859b87bfb7d477adbe1a40d19f3f61ae0 (diff)
parent20536aa5212baaa8b61944d5b3934222cfa9e2fb (diff)
downloadvyos-build-1033e7876a7f1f0be8150047852804a66ee4dd23.tar.gz
vyos-build-1033e7876a7f1f0be8150047852804a66ee4dd23.zip
Merge pull request #15 from mtudosoiu/current
task #T555 && #T556 add tools/submod-mk and Dockerfile to vyos-build repository
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile33
1 files changed, 33 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 00000000..924ddb12
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,33 @@
+# Must be run with --privileged flag
+# Recommended to run the container with a volume mapped
+# in order to easy exprort images built to "external" world
+FROM debian:jessie
+
+RUN apt-get update &&\
+ apt-get install -y \
+ vim \
+ git \
+ make \
+ live-build \
+ pbuilder \
+ devscripts \
+ python3-pystache \
+ squashfs-tools \
+ autoconf \
+ dpkg-dev \
+ syslinux \
+ genisoimage \
+ lsb-release \
+ fakechroot \
+ kernel-package \
+ libtool \
+ libglib2.0-dev \
+ libboost-filesystem-dev \
+ libapt-pkg-dev \
+ flex \
+ bison \
+ libperl-dev \
+ libnfnetlink-dev \
+ && rm -rf /var/lib/apt/lists/*
+
+WORKDIR ~