Update Fedora and CentOS docker images.

- Reduce image size by skipping weak package references.
- Consolidate and sort packages to install.
- Improve consistency between versions.
- Combine yum/dnf install and clean to avoid unwanted caching.
- Don't update existing packages from base image unnecessarily.
This commit is contained in:
Matt Clay
2016-06-14 16:15:32 -07:00
parent e35c0b5669
commit cabbafb650
4 changed files with 74 additions and 58 deletions

View File

@@ -1,6 +1,5 @@
# Latest version of fedora rawhide
FROM fedora:rawhide
RUN dnf -y update; dnf clean all
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; done); \
rm -f /lib/systemd/system/multi-user.target.wants/*; \
rm -f /etc/systemd/system/*.wants/*; \
@@ -9,24 +8,27 @@ rm -f /lib/systemd/system/sockets.target.wants/*udev*; \
rm -f /lib/systemd/system/sockets.target.wants/*initctl*; \
rm -f /lib/systemd/system/basic.target.wants/*; \
rm -f /lib/systemd/system/anaconda.target.wants/*;
RUN dnf -y install \
RUN dnf clean all && \
dnf -y --setopt=install_weak_deps=false install \
acl \
asciidoc \
dbus-python \
bzip2 \
dbus-python \
file \
findutils \
git \
glibc-locale-source \
iproute \
make \
mercurial \
mariadb-server \
mercurial \
MySQL-python \
openssh-clients \
openssh-server \
procps \
PyYAML \
python-coverage \
python2-dnf \
python-coverage \
python-httplib2 \
python-jinja2 \
python-keyczar \
@@ -36,6 +38,7 @@ RUN dnf -y install \
python-pip \
python-setuptools \
python-virtualenv \
PyYAML \
rpm-build \
rubygems \
subversion \
@@ -43,10 +46,11 @@ RUN dnf -y install \
tar \
unzip \
which \
openssh-clients \
openssh-server \
yum \
zip
zip \
&& \
dnf clean all
RUN localedef --quiet -c -i en_US -f UTF-8 en_US.UTF-8
RUN /usr/bin/sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers
RUN mkdir /etc/ansible/