Skip to content
Snippets Groups Projects
Dockerfile.j2 715 B
Newer Older
FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
MAINTAINER Kolla Project (https://launchpad.net/kolla)

Steven Dake's avatar
Steven Dake committed
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}

RUN yum -y install \
        libvirt-daemon \
        libguestfs \
        qemu-system-x86 \
        libvirt-daemon-driver-nwfilter \
        libvirt-daemon-config-nwfilter \
        libvirt-daemon-driver-lxc \
    && yum clean all

Sam Yaple's avatar
Sam Yaple committed
{% elif base_distro in ['ubuntu', 'debian'] %}

RUN apt-get install -y --no-install-recommends \
        libvirt-bin \
        dmidecode \
        pm-utils \
        qemu \
        ebtables \
    && apt-get clean

{% endif %}

COPY start.sh /

CMD ["/start.sh"]