Upgrade Nostr RS Relay v0.8.5

This commit is contained in:
Taylor Helsper 2023-02-16 20:04:13 -06:00
parent 2f38048b40
commit 69edcb849e
2 changed files with 3 additions and 2 deletions

View File

@ -15,7 +15,7 @@
"This is a nostr relay, written in Rust. It currently supports the entire relay protocol, and persists data with SQLite.",
"This application is intended for advanced users and running a relay is not required to use nostr clients."
],
"latest_version": "0.7.15",
"latest_version": "0.8.5",
"linux_user": "nostrrsrelay",
"supported_archs": null,
"download_skip": false,

View File

@ -22,6 +22,7 @@ fi
docker rmi $(docker images --format '{{.Repository}}:{{.Tag}}' | grep 'nostrrsrelay') || true
# Build docker container
docker build -t nostrrsrelay .
# The HOME=. is a hack to use the current folder since nostrrsrelay user doesn't have a home holder which causes failure
HOME=. docker build -t nostrrsrelay .
echo "================== DONE INSTALLING APP ================="