blob: 9f28b4ee2689243075c9a03855ef8cb1dad7a496 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 --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"]
|