diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -18,10 +18,14 @@ RUN yum -y install \ kubernetes-client \ && yum clean all - - COPY sx.sh /bin/sx RUN chmod 775 /bin/sx +# For ugly applications which want to resolve user name +RUN chmod g=u /etc/passwd + +COPY docker-entrypoint.sh / +ENTRYPOINT ["/docker-entrypoint.sh"] + CMD [ "/bin/sx" ] |