080295db by Adam Heath

Move location of node entrypoint from /root to /sbin.

1 parent d28840cc
......@@ -8,5 +8,5 @@ RUN /tmp/files/configure
#ADD https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar /usr/local/bin/wp
#RUN ["chmod", "755", "/usr/local/bin/wp"]
ENTRYPOINT ["/root/entrypoint"]
ENTRYPOINT ["/sbin/entrypoint"]
#CMD ["/usr/sbin/php5-fpm", "--nodaemonize", "--force-stderr", "--fpm-config", "/etc/php5/fpm/php-fpm.conf"]
......
......@@ -5,6 +5,6 @@ apt-get update
apt-get install -y ssmtp sudo $NODE_EXTRA_PACKAGES
#npm install -g gulp grunt
cp /tmp/files/entrypoint /root/entrypoint
cp /tmp/files/entrypoint /sbin/entrypoint
rm -rf /tmp/files
......