summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--gluster-client/Dockerfile8
1 files changed, 8 insertions, 0 deletions
diff --git a/gluster-client/Dockerfile b/gluster-client/Dockerfile
new file mode 100644
index 0000000..9b1d1d9
--- /dev/null
+++ b/gluster-client/Dockerfile
@@ -0,0 +1,8 @@
+FROM fedora
+MAINTAINER Humble Devassy Chirammal <hchiramm@redhat.com>
+LABEL Name="glusterfs-client"
+ENV container docker
+RUN dnf --setopt=tsflags=nodocs -y update; dnf clean all; dnf --setopt=tsflags=nodocs -y install wget nfs-utils attr iputils iproute;
+RUN sed -i "s/LANG/\#LANG/g" /etc/locale.conf
+RUN dnf install -y glusterfs-fuse; dnf clean all;
+CMD ["/bin/bash"]