diff options
author | unixninja92 <charles@unixninja92.com> | 2018-09-02 17:25:58 -0400 |
---|---|---|
committer | unixninja92 <charles@unixninja92.com> | 2018-09-03 19:06:46 -0400 |
commit | 99185352490f5c05246c4d6d049ce973ebaef1dc (patch) | |
tree | f4c50130fc06eca1ca5436d8aa627a57bbe73f7c /Dockerfile | |
parent | 4f7540f6f8e04352cc7f3c879fa129e9abb155de (diff) | |
download | vyos-build-99185352490f5c05246c4d6d049ce973ebaef1dc.tar.gz vyos-build-99185352490f5c05246c4d6d049ce973ebaef1dc.zip |
T556: Added packages to docker image for building qemu image and vyos-1x
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 19 |
1 files changed, 17 insertions, 2 deletions
@@ -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 ~ |