diff options
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index a00422f2..452b1499 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -297,6 +297,25 @@ RUN if dpkg-architecture -ii386 || dpkg-architecture -iamd64; then \ qemu-kvm; \ fi +# 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 + +# Packages needed for libnss-mapuser +RUN apt-get update && apt-get install -y \ + libaudit-dev + # Install packer RUN if dpkg-architecture -ii386 || dpkg-architecture -iamd64; then \ export LATEST="$(curl -s https://checkpoint-api.hashicorp.com/v1/check/packer | \ |