pull down to refresh
Here's what the command does:
docker run -it alpine /bin/ash -c ...
apk update && apk add curl nodejs npm ...
curl -fsSL https://nostr-svrn.codeberg.page/install.sh
| sed 's/set -e/set -ex/' | sh
set -e
Here's what the command does:
docker run -it alpine /bin/ash -c ...Get clean alpine image, call its shell (interactively) to execute a scriptapk update && apk add curl nodejs npm ...install the prerequisitescurl -fsSL https://nostr-svrn.codeberg.page/install.sh- your install script| sed 's/set -e/set -ex/' | sh- edit theset -eline to make it echo back so we can debug