Commit b9adf8aa authored by Jerzy Szczepkowski's avatar Jerzy Szczepkowski

Merge pull request #7417 from elsonrodriguez/patch-1

Fixes #7416 - Fixed NFS example Dockerfile to include a valid Entrypoint.
parents 0153744a 621c86de
......@@ -2,6 +2,10 @@ FROM fedora:21
MAINTAINER Jan Safranek <jsafrane@redhat.com>
EXPOSE 2049/tcp
RUN yum -y install nfs-utils && yum clean all && run_nfs /usr/local/bin/run_nfs
RUN yum -y install nfs-utils && yum clean all
ENTRYPOINT ["/usr/local/bin/run_nfs"]
\ No newline at end of file
ADD run_nfs /usr/local/bin/
RUN chmod +x /usr/local/bin/run_nfs
ENTRYPOINT ["/usr/local/bin/run_nfs"]
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment