mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-08-09 20:17:41 +00:00
Merge pull request #7417 from elsonrodriguez/patch-1
Fixes #7416 - Fixed NFS example Dockerfile to include a valid Entrypoint.
This commit is contained in:
commit
b9adf8aa34
@ -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"]
|
||||
ADD run_nfs /usr/local/bin/
|
||||
|
||||
RUN chmod +x /usr/local/bin/run_nfs
|
||||
|
||||
ENTRYPOINT ["/usr/local/bin/run_nfs"]
|
||||
|
Loading…
Reference in New Issue
Block a user