Skip to content

Commit 8e6dfb3

Browse files
committed
fix: make sure dev entrypoint runs bin/start by default
- That runs yarn install, hydra client, yarn dev, etc Signed-off-by: Peter Lyons <[email protected]>
1 parent fec2741 commit 8e6dfb3

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)