Dockerfile: install nodepool-builder dependencies

vhd-util is needed for targetting Rackspace. debian-keyring is
needed for debian images, ubuntu-keyring for ubuntu images and
yum for red hat images.

Note the sibling build will have installed many of these from the
bindep.txt file from diskimage-builder itself.  However, when using
releases this is not done.  These installs should be a no-op for the
sibling containers.

Change-Id: I35bc6a2a07fda229acfd53a2a34227d6475495a8
This commit is contained in:
Monty Taylor 2019-11-07 09:12:23 +08:00 committed by Ian Wienand
parent ceb6e2bbdb
commit 46d0ce2483
1 changed files with 22 additions and 0 deletions

View File

@ -54,6 +54,28 @@ FROM nodepool-base as nodepool-builder
# dib needs sudo
RUN echo "nodepool ALL=(ALL) NOPASSWD:ALL" > /etc/sudoers.d/nodepool-sudo \
&& chmod 0440 /etc/sudoers.d/nodepool-sudo
# binary deps; see
# https://docs.openstack.org/diskimage-builder/latest/developer/vhd_creation.html
# about the vhd-util deps
RUN \
apt-get update \
&& apt-get install -y gnupg2 \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv 2B5DE24F0EC9F98BD2F85CA315B6CE7C018D05F5 \
&& echo "deb http://ppa.launchpad.net/openstack-ci-core/vhd-util/ubuntu bionic main" >> /etc/apt/sources.list \
&& apt-get update \
&& apt-get install -y \
curl \
debian-keyring \
git \
kpartx \
qemu-utils \
ubuntu-keyring \
vhd-util \
yum \
yum-utils \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
USER 10001
CMD _DAEMON_FLAG=${DEBUG:+-d} && \
_DAEMON_FLAG=${_DAEMON_FLAG:--f} && \