diff --git a/node/base/entrypoint.sh b/node/base/entrypoint.sh index 9cbaefe..625c948 100644 --- a/node/base/entrypoint.sh +++ b/node/base/entrypoint.sh @@ -2,18 +2,8 @@ set -e -SCRIPT="$1" -WORKDIR="$2" - echo " -Setting workdir from current dir, which is $(pwd) -" -if [ -n "$WORKDIR" ]; then - cd "$WORKDIR" -fi - -echo " -Running node script +Running node script $1 " -node $SCRIPT >/tmp/log.txt +node $1 >/tmp/log.txt