diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-03-03 18:48:53 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-03-03 18:48:53 +0100 |
commit | e1736701aecac8877ac525aad90cf0e521c4a75f (patch) | |
tree | b3091a76eaff3afcaa7a24bfea1e105fab5619a8 /docker | |
parent | 64891616bc0ab37d3ba12994d428409257afc892 (diff) | |
download | vyos-build-e1736701aecac8877ac525aad90cf0e521c4a75f.tar.gz vyos-build-e1736701aecac8877ac525aad90cf0e521c4a75f.zip |
Docker: add packages needed for vyos-cloud-init
Diffstat (limited to 'docker')
-rw-r--r-- | docker/Dockerfile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 8286bf73..00c606d2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -322,6 +322,30 @@ RUN apt-get update && apt-get install -y \ python2.7-dev \ libmysqld-dev +# Packages needed for vyos-cloud-init +RUN apt-get update && apt-get install -y \ + dh-python \ + dh-systemd \ + iproute2 \ + pep8 \ + po-debconf \ + pyflakes \ + python3 \ + python3-configobj \ + python3-httpretty \ + python3-jinja2 \ + python3-jsonpatch \ + python3-mock \ + python3-nose \ + python3-oauthlib \ + python3-pep8 \ + python3-pyflakes \ + python3-requests \ + python3-serial \ + python3-setuptools \ + python3-six \ + python3-yaml + # Update live-build RUN echo 'deb http://ftp.debian.org/debian stretch main' | tee -a /etc/apt/sources.list.d/stretch.list && \ apt-get update && apt-get install -y -t stretch \ |