
Previously images were based from RHEL OSP + RDO Icehouse. This presents a problem in that internal urls are used to access the rhel7 repositories. For new contributors, we need something that can be accessed without special rhel7 permissions. mariadb and rabbitmq can from fedora cinder, glance, keystone can from fedora-rdo-base This patch also uses the RDO repositories from upstream. This patch also udpates the base fedora image with latest bits.
9 lines
226 B
Docker
9 lines
226 B
Docker
FROM fedora
|
|
MAINTAINER Lars Kellogg-Stedman <lars@redhat.com>
|
|
|
|
RUN yum -y install rabbitmq-server; yum clean all
|
|
ADD rabbitmq.config /etc/rabbitmq/
|
|
ADD rabbitmq-env.conf /etc/rabbitmq/
|
|
ADD start.sh /start.sh
|
|
CMD ["/start.sh"]
|