Move location of node entrypoint from /root to /sbin.
Showing
2 changed files
with
2 additions
and
2 deletions
... | @@ -8,5 +8,5 @@ RUN /tmp/files/configure | ... | @@ -8,5 +8,5 @@ RUN /tmp/files/configure |
8 | #ADD https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar /usr/local/bin/wp | 8 | #ADD https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar /usr/local/bin/wp |
9 | #RUN ["chmod", "755", "/usr/local/bin/wp"] | 9 | #RUN ["chmod", "755", "/usr/local/bin/wp"] |
10 | 10 | ||
11 | ENTRYPOINT ["/root/entrypoint"] | 11 | ENTRYPOINT ["/sbin/entrypoint"] |
12 | #CMD ["/usr/sbin/php5-fpm", "--nodaemonize", "--force-stderr", "--fpm-config", "/etc/php5/fpm/php-fpm.conf"] | 12 | #CMD ["/usr/sbin/php5-fpm", "--nodaemonize", "--force-stderr", "--fpm-config", "/etc/php5/fpm/php-fpm.conf"] | ... | ... |
... | @@ -5,6 +5,6 @@ apt-get update | ... | @@ -5,6 +5,6 @@ apt-get update |
5 | apt-get install -y ssmtp sudo $NODE_EXTRA_PACKAGES | 5 | apt-get install -y ssmtp sudo $NODE_EXTRA_PACKAGES |
6 | #npm install -g gulp grunt | 6 | #npm install -g gulp grunt |
7 | 7 | ||
8 | cp /tmp/files/entrypoint /root/entrypoint | 8 | cp /tmp/files/entrypoint /sbin/entrypoint |
9 | 9 | ||
10 | rm -rf /tmp/files | 10 | rm -rf /tmp/files | ... | ... |
-
Please register or sign in to post a comment