-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update the entrypoint and cmd for node images
- Loading branch information
1 parent
1b99185
commit c4bcab2
Showing
20 changed files
with
320 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
echo "Checking for composer.json and the absence of composer.lock or vendor..." | ||
if [ -f "composer.json" ] && ( [ ! -f "composer.lock" ] || [ ! -d "vendor" ] ); then | ||
echo "Running composer install..." | ||
composer \ | ||
--no-ansi \ | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-progress \ | ||
--no-scripts \ | ||
--optimize-autoloader \ | ||
install | ||
else | ||
echo "No composer installation needed." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
echo "Checking for composer.json and the absence of composer.lock or vendor..." | ||
if [ -f "composer.json" ] && ( [ ! -f "composer.lock" ] || [ ! -d "vendor" ] ); then | ||
echo "Running composer install..." | ||
composer \ | ||
--no-ansi \ | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-progress \ | ||
--no-scripts \ | ||
--optimize-autoloader \ | ||
install | ||
else | ||
echo "No composer installation needed." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
echo "Checking for composer.json and the absence of composer.lock or vendor..." | ||
if [ -f "composer.json" ] && ( [ ! -f "composer.lock" ] || [ ! -d "vendor" ] ); then | ||
echo "Running composer install..." | ||
composer \ | ||
--no-ansi \ | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-progress \ | ||
--no-scripts \ | ||
--optimize-autoloader \ | ||
install | ||
else | ||
echo "No composer installation needed." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
echo "Checking for composer.json and the absence of composer.lock or vendor..." | ||
if [ -f "composer.json" ] && ( [ ! -f "composer.lock" ] || [ ! -d "vendor" ] ); then | ||
echo "Running composer install..." | ||
composer \ | ||
--no-ansi \ | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-progress \ | ||
--no-scripts \ | ||
--optimize-autoloader \ | ||
install | ||
else | ||
echo "No composer installation needed." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
echo "Checking for composer.json and the absence of composer.lock or vendor..." | ||
if [ -f "composer.json" ] && ( [ ! -f "composer.lock" ] || [ ! -d "vendor" ] ); then | ||
echo "Running composer install..." | ||
composer \ | ||
--no-ansi \ | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-progress \ | ||
--no-scripts \ | ||
--optimize-autoloader \ | ||
install | ||
else | ||
echo "No composer installation needed." | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/bin/sh | ||
|
||
set -e | ||
|
||
echo "Checking for composer.json and the absence of composer.lock or vendor..." | ||
if [ -f "composer.json" ] && ( [ ! -f "composer.lock" ] || [ ! -d "vendor" ] ); then | ||
echo "Running composer install..." | ||
composer \ | ||
--no-ansi \ | ||
--no-dev \ | ||
--no-interaction \ | ||
--no-progress \ | ||
--no-scripts \ | ||
--optimize-autoloader \ | ||
install | ||
else | ||
echo "No composer installation needed." | ||
fi |
Oops, something went wrong.