Lock Fedora-based image to specific versions

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
This commit is contained in:
Martin André 2014-12-30 14:10:25 +09:00
parent 1fcf0bee5f
commit 8843f6ff52
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM fedora
FROM fedora:20
MAINTAINER Kolla Project (https://launchpad.net/kolla)
# Set up repositories

View File

@ -1,4 +1,4 @@
FROM fedora
FROM fedora:20
MAINTAINER Kolla Project (https://launchpad.net/kolla)
RUN yum -y install haproxy python-jinja2; yum clean all