Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
docker-image-recipes
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
080295db
authored
2017-09-14 13:05:58 -0500
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Move location of node entrypoint from /root to /sbin.
1 parent
d28840cc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
node/Dockerfile
node/files/configure
node/Dockerfile
View file @
080295d
...
...
@@ -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"]
...
...
node/files/configure
View file @
080295d
...
...
@@ -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
...
...
Please
register
or
sign in
to post a comment