8843f6ff52
This prevents unexpected breakage on new Fedora release. Fedora 20 is the last release known to work. Images based on Fedora 21 are currently broken as they lack required packages such as iproute. Support for Fedora 21 is on the way and will follow soon once all images have been verified. Change-Id: I849732147302eaf00d864d6b5093ff6ac006f496
10 lines
266 B
Docker
10 lines
266 B
Docker
FROM fedora:20
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
RUN yum -y install haproxy python-jinja2; yum clean all
|
|
RUN mkdir -p /etc/haproxy/templates
|
|
ADD haproxy.cfg.tmpl /etc/haproxy/templates/haproxy.cfg.tmpl
|
|
ADD start.py /start.py
|
|
CMD ["/start.py"]
|
|
|