From 99185352490f5c05246c4d6d049ce973ebaef1dc Mon Sep 17 00:00:00 2001 From: unixninja92 Date: Sun, 2 Sep 2018 17:25:58 -0400 Subject: T556: Added packages to docker image for building qemu image and vyos-1x --- Dockerfile | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 932fe9f3..0151ae20 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # 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 +# Recommended to run the container with a volume mapped +# in order to easy exprort images built to "external" world FROM debian:jessie RUN echo 'deb http://ftp.debian.org/debian jessie-backports main' | tee -a /etc/apt/sources.list &&\ @@ -30,6 +30,21 @@ RUN echo 'deb http://ftp.debian.org/debian jessie-backports main' | tee -a /etc/ libperl-dev \ libnfnetlink-dev \ python3-git \ + jq \ + qemu-system-x86 \ + qemu-utils \ + quilt \ + python3-lxml \ + python3-setuptools \ + python3-nose \ + python3-coverage \ && rm -rf /var/lib/apt/lists/* +#install packer +RUN export LATEST="$(curl -s https://checkpoint-api.hashicorp.com/v1/check/packer | \ + jq -r -M '.current_version')"; \ + echo "url https://releases.hashicorp.com/packer/"$LATEST"/packer_"$LATEST"_linux_amd64.zip" |\ + curl -K- | gzip -d > /usr/bin/packer +RUN chmod +x /usr/bin/packer + WORKDIR ~ -- cgit v1.2.3