diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-01-23 07:29:11 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-01-23 07:29:11 +0100 |
commit | 7604383d10961b05e5393420fbf27e04eccc989e (patch) | |
tree | 3a94a5135cb12d919de3c421267c88cf9ab9c8f2 /docker | |
parent | f1ec0b24d1c6460b0afc1676fce366832103b514 (diff) | |
download | vyos-build-7604383d10961b05e5393420fbf27e04eccc989e.tar.gz vyos-build-7604383d10961b05e5393420fbf27e04eccc989e.zip |
Docker: add build dependencies for vyos-cloud-init
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index e93913b7..e52f568d 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -262,6 +262,21 @@ RUN apt-get update && apt-get install -y \ qemu-utils \ qemu-kvm +# Packages needed for vyos-cloud-init +RUN apt-get update && apt-get install -y \ + pep8 \ + pyflakes \ + python3-configobj \ + python3-httpretty \ + python3-jsonpatch \ + python3-mock \ + python3-oauthlib \ + python3-pep8 \ + python3-pyflakes \ + python3-serial \ + python3-unittest2 \ + python3-yaml + # Install packer RUN export LATEST="$(curl -s https://checkpoint-api.hashicorp.com/v1/check/packer | \ jq -r -M '.current_version')"; \ |