Skip to content

Commit e2df507

Browse files
authored
Merge pull request #584 from reactioncommerce/fix-entrypoint-start
fix: make sure dev entrypoint runs bin/start by default
2 parents fec2741 + 8e6dfb3 commit e2df507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.reaction/entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")/.."
1818
usermod --uid "$(stat -c "%u" .)" --non-unique node |& grep -v "no changes" || true
1919
./.reaction/fix-volumes.sh
2020
export NODE_ENV="${NODE_ENV:-production}"
21-
command=(node .)
21+
command=(./bin/start)
2222
if [[ $# -gt 0 ]]; then
2323
command=($@)
2424
fi

0 commit comments

Comments
 (0)