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
This commit is contained in:
Lars Kellogg-Stedman 2014-10-09 09:35:37 -04:00
parent cb05bb513b
commit 03f616f87c

View File

@ -1,10 +1,8 @@
FROM fedora
MAINTAINER Steven Dake <sdake@redhat.com>
RUN yum update -y
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 \
@ -82,4 +80,4 @@ RUN yum install -y \
python-webtest \
python-werkzeug \
python-wsme \
&& yum clean all
; yum clean all