diff options
author | Humble Devassy Chirammal <humble.devassy@gmail.com> | 2017-05-29 08:04:10 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-29 08:04:10 +0000 |
commit | a65c135d48c74880c2935c098f425f9a2712c5d1 (patch) | |
tree | 52e439b7794f2333ca2bc622e6700076944102f0 /gluster-client/Dockerfile | |
parent | a21c824de615c2e82134b91f042e7b6314189e5c (diff) | |
parent | c0f25a2bf0712595e91830467f3db0086f438fa5 (diff) | |
download | gluster-a65c135d48c74880c2935c098f425f9a2712c5d1.tar.gz gluster-a65c135d48c74880c2935c098f425f9a2712c5d1.tar.bz2 gluster-a65c135d48c74880c2935c098f425f9a2712c5d1.tar.xz gluster-a65c135d48c74880c2935c098f425f9a2712c5d1.zip |
Merge pull request #43 from MohamedAshiqrh/refresh
Cleaning up RUN in dockerfile
Diffstat (limited to 'gluster-client/Dockerfile')
-rw-r--r-- | gluster-client/Dockerfile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gluster-client/Dockerfile b/gluster-client/Dockerfile index 8621ef8..9f28b4e 100644 --- a/gluster-client/Dockerfile +++ b/gluster-client/Dockerfile @@ -14,10 +14,9 @@ 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; dnf clean all; - -RUN sed -i "s/LANG/\#LANG/g" /etc/locale.conf - -RUN dnf install -y glusterfs-fuse; dnf clean all; +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; CMD ["/bin/bash"] |