summaryrefslogtreecommitdiffstats
path: root/gluster-client/Dockerfile
diff options
context:
space:
mode:
authorHumble Devassy Chirammal <humble.devassy@gmail.com>2018-03-01 12:45:35 +0530
committerGitHub <noreply@github.com>2018-03-01 12:45:35 +0530
commitab3a58dc5a2b365e9a01ee79e06d05ab0149cd20 (patch)
treeda24521fd402e73d7c00dff78f9e99dc876255f7 /gluster-client/Dockerfile
parent697965ec5f1a51eaf11c2c4ac7f8e3e7e36d0e5b (diff)
parentd7e7fb48f5f50c8fedc7228a3f4c13f324064274 (diff)
downloadgluster-ab3a58dc5a2b365e9a01ee79e06d05ab0149cd20.tar.gz
gluster-ab3a58dc5a2b365e9a01ee79e06d05ab0149cd20.tar.bz2
gluster-ab3a58dc5a2b365e9a01ee79e06d05ab0149cd20.tar.xz
gluster-ab3a58dc5a2b365e9a01ee79e06d05ab0149cd20.zip
Merge pull request #69 from raghavendra-talur/RUN-should-consider-exit-status-of-all-commands
fix bug when multiple shell commands are specified in RUN
Diffstat (limited to 'gluster-client/Dockerfile')
-rw-r--r--gluster-client/Dockerfile9
1 files changed, 5 insertions, 4 deletions
diff --git a/gluster-client/Dockerfile b/gluster-client/Dockerfile
index 9f28b4e..dc8be95 100644
--- a/gluster-client/Dockerfile
+++ b/gluster-client/Dockerfile
@@ -14,9 +14,10 @@ LABEL architecture="x86_64" \
ENV container docker
-RUN dnf --setopt=tsflags=nodocs -y update; dnf --setopt=tsflags=nodocs -y install wget nfs-utils attr iputils iproute; \
-sed -i "s/LANG/\#LANG/g" /etc/locale.conf;\
-dnf install -y glusterfs-fuse;\
-dnf clean all;
+RUN sed -i "s/LANG/\#LANG/g" /etc/locale.conf
+RUN dnf --setopt=tsflags=nodocs -y update &&\
+dnf --setopt=tsflags=nodocs -y install wget nfs-utils attr iputils iproute &&\
+dnf install -y glusterfs-fuse &&\
+dnf clean all
CMD ["/bin/bash"]