summaryrefslogtreecommitdiffstats
path: root/Fedora
diff options
context:
space:
mode:
authorMohamed Ashiq Liyazudeen <mliyazud@redhat.com>2017-05-18 17:30:29 +0530
committerMohamed Ashiq Liyazudeen <mliyazud@redhat.com>2017-05-25 11:35:17 +0530
commitc0f25a2bf0712595e91830467f3db0086f438fa5 (patch)
tree52e439b7794f2333ca2bc622e6700076944102f0 /Fedora
parenta21c824de615c2e82134b91f042e7b6314189e5c (diff)
downloadgluster-c0f25a2bf0712595e91830467f3db0086f438fa5.tar.gz
gluster-c0f25a2bf0712595e91830467f3db0086f438fa5.tar.bz2
gluster-c0f25a2bf0712595e91830467f3db0086f438fa5.tar.xz
gluster-c0f25a2bf0712595e91830467f3db0086f438fa5.zip
Cleaning up RUN in dockerfile
This reduces the image size as it reduces the number of intermediate layers. Signed-off-by: Mohamed Ashiq Liyazudeen <mliyazud@redhat.com>
Diffstat (limited to 'Fedora')
-rw-r--r--Fedora/Dockerfile17
1 files changed, 7 insertions, 10 deletions
diff --git a/Fedora/Dockerfile b/Fedora/Dockerfile
index 164732a..fc3f722 100644
--- a/Fedora/Dockerfile
+++ b/Fedora/Dockerfile
@@ -15,9 +15,8 @@ LABEL architecture="x86_64" \
io.openshift.tags="gluster,glusterfs,gluster-fedora"
-RUN yum -y update && yum clean all;
-
-RUN yum -y install systemd; yum clean all; \
+RUN yum -y update;\
+yum -y install systemd; \
(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/*;\
@@ -25,17 +24,15 @@ rm -f /lib/systemd/system/local-fs.target.wants/*; \
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 yum --setopt=tsflags=nodocs -y install wget nfs-utils iputils iproute attr glusterfs glusterfs-server glusterfs-geo-replication openssh-server; yum clean all
+rm -f /lib/systemd/system/anaconda.target.wants/*; \
+yum --setopt=tsflags=nodocs -y install wget nfs-utils iputils iproute attr glusterfs glusterfs-server glusterfs-geo-replication openssh-server; yum clean all;\
+systemctl disable nfs-server.service;\
+systemctl enable rpcbind.service;\
+systemctl enable glusterd.service;
-RUN echo 'root:password' | chpasswd
VOLUME [ "/sys/fs/cgroup" ]
EXPOSE 22 111 245 443 24007 2049 8080 6010 6011 6012 38465 38466 38468 38469 49152 49153 49154 49156 49157 49158 49159 49160 49161 49162 49163
-RUN systemctl disable nfs-server.service
-RUN systemctl enable rpcbind.service
-RUN systemctl enable glusterd.service
CMD ["/usr/sbin/init"]