summaryrefslogtreecommitdiffstats
path: root/gluster-client
diff options
context:
space:
mode:
authorMohamed Ashiq Liyazudeen <mliyazud@redhat.com>2017-05-08 20:38:13 +0530
committerMohamed Ashiq Liyazudeen <mliyazud@redhat.com>2017-05-08 20:59:05 +0530
commite63a97ed1b464975c9df07ea07dec3b136fa034a (patch)
tree90d8ad1d5caa732a83b521439b0d6b0bf3c9ba81 /gluster-client
parentbd3aed1b4a11ed8816c6c556847c2fbba600837d (diff)
downloadgluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.tar.gz
gluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.tar.bz2
gluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.tar.xz
gluster-e63a97ed1b464975c9df07ea07dec3b136fa034a.zip
Cleanup for the Unit tests
Signed-off-by: Mohamed Ashiq Liyazudeen <mliyazud@redhat.com>
Diffstat (limited to 'gluster-client')
-rw-r--r--gluster-client/Dockerfile23
1 files changed, 19 insertions, 4 deletions
diff --git a/gluster-client/Dockerfile b/gluster-client/Dockerfile
index 9b1d1d9..8621ef8 100644
--- a/gluster-client/Dockerfile
+++ b/gluster-client/Dockerfile
@@ -1,8 +1,23 @@
-FROM fedora
-MAINTAINER Humble Devassy Chirammal <hchiramm@redhat.com>
-LABEL Name="glusterfs-client"
+FROM fedora
+
+MAINTAINER Humble Devassy Chirammal <hchiramm@redhat.com>
+
+LABEL architecture="x86_64" \
+ name="gluster/glusterfs-client" \
+ version="3.10" \
+ vendor="Red Hat, Inc" \
+ summary="This image has a running glusterfs service ( Fedora + Gluster 3.10 client)" \
+ io.k8s.display-name="Gluster 3.10 client based on Fedora" \
+ io.k8s.description="Gluster Client Image is based on Fedora Image which is used to mount a glusterfs volume." \
+ description="Gluster Client Image is based on Fedora Image which is used to mount a glusterfs volume." \
+ io.openshift.tags="gluster,glusterfs,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 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;
+
CMD ["/bin/bash"]