Files
kolla-ansible/docker/fedora-rdo-base/Dockerfile
Lars Kellogg-Stedman 03f616f87c clean up base Dockerfile
- run "yum update" after installing RDO repository (to ensure we get any
  package updates from this repository)
- "yum clean" after the "yum update" to prevent yum cache from being
  baked into the image

Change-Id: Id897fd85214855bb08f7e16da4bbdf07b821d991
2014-10-09 09:35:37 -04:00

84 lines
1.6 KiB
Docker

FROM fedora
MAINTAINER Steven Dake <sdake@redhat.com>
RUN yum install -y https://rdo.fedorapeople.org/rdo-release.rpm
RUN yum update -y; yum clean all
RUN yum install -y \
mariadb-libs \
openssl \
openstack-utils \
pyparsing \
python-alembic \
python-amqp \
python-amqplib \
python-anyjson \
python-boto \
python-cheetah \
python-cliff \
python-cmd2 \
python-croniter \
python-crypto \
python-d2to1 \
python-docutils \
python-dogpile-cache \
python-dogpile-core \
python-empy \
python-eventlet \
python-flask \
python-futures \
python-greenlet \
python-httplib2 \
python-iso8601 \
python-itsdangerous \
python-jinja2 \
python-jsonpatch \
python-jsonpath-rw \
python-jsonpointer \
python-jsonschema \
python-keyring \
python-kombu \
python-lesscpy \
python-lockfile \
python-lxml \
python-markdown \
python-memcached \
python-ldap \
python-migrate \
python-msgpack \
python-netifaces \
python-networkx \
python-oauthlib \
python-oslo-config \
python-oslo-messaging \
python-oslo-rootwrap \
python-paramiko \
python-passlib \
python-paste-deploy \
python-pbr \
python-pecan \
python-ply \
python-prettytable \
python-psutil \
python-pycadf \
python-pygments \
python-pymongo \
python-qpid \
python-repoze-lru \
python-requests \
python-routes \
python-simplegeneric \
python-simplejson \
python-singledispatch \
python-six \
python-sqlalchemy \
python-stevedore \
python-taskflow \
python-versiontools \
python-warlock \
python-webob \
python-websockify \
python-webtest \
python-werkzeug \
python-wsme \
; yum clean all