Lars Kellogg-Stedman 277f2448e8 Update MAINTAINER in Dockerfiles to Kolla Project
Remove individual MAINTAINER information from Dockerfiles.

Change-Id: I777df5cde049599dc786176e1d5b4b9597f0b334
2014-10-22 11:11:31 -04:00

19 lines
388 B
Docker

FROM kollaglue/fedora-rdo-base
MAINTAINER Kolla Project (https://launchpad.net/kolla)
#Install required packages
RUN yum -y install dnf dnf-plugins-core; yum clean all
RUN dnf copr enable -y larsks/crux
RUN yum install -y openstack-keystone \
openstack-utils \
mariadb \
crux \
; yum clean all
ADD ./start.sh /start.sh
ADD ./check.sh /check.sh
EXPOSE 5000 35357
CMD ["/start.sh"]