Remove wrong restore of port 80

This commit is contained in:
zstadler 2023-02-19 06:42:10 +02:00
commit 762007c77d
2 changed files with 2 additions and 2 deletions

View file

@ -3,7 +3,7 @@ if ! which -- "${1}"; then
# first arg is not an executable
export DISPLAY=:99
Xvfb "${DISPLAY}" -nolisten unix &
exec node /usr/src/app/ -p 80 "$@"
exec node /usr/src/app/ "$@"
fi
exec "$@"

View file

@ -1,7 +1,7 @@
#!/bin/sh
if ! which -- "${1}"; then
# first arg is not an executable
exec node /usr/src/app/ -p 80 "$@"
exec node /usr/src/app/ "$@"
fi
exec "$@"