blob: 9b1d1d9a070ab102332a3f8601a5e887ed30fe7b (
plain)
1
2
3
4
5
6
7
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"]
|