From e2338362dcf13a0c70604a10a8ce659d718f3044 Mon Sep 17 00:00:00 2001 From: Ivan Mikushin Date: Sat, 20 Jan 2024 15:57:06 -0800 Subject: [PATCH] A little more --- Dockerfile | 1 - README.md | 6 +++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7517d37..e0395af 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,6 @@ FROM ubuntu:latest RUN apt update; apt install -y nodejs npm; npm install -g snarkjs@latest COPY --link --from=build /app/target/release/zkbtc /usr/local/bin/ -COPY --link ./examples ./examples WORKDIR /app diff --git a/README.md b/README.md index 62605d3..9e7935a 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ specifying the following inputs: Other inputs will be automatically filled in (for example, it will use the zkapp's state as `prev_state` input). -## Run an MPC committee node with Docker +## Run an MPC node with Docker If you're using the DigitalOcean Docker droplet (or any Linux server protected with UFW), you need to open the port first: @@ -165,6 +165,10 @@ The node is now running in the background and listening on port 8891, and you ca nc -zv ${SERVER_IP} 8891 ``` +### Updating the MPC node software + + + ## Tell me more You can read more about zkBitcoin in [our whitepaper](./whitepaper.pdf), [our documentation](docs/), and about advanced usage in [our developer documentation](DEVELOPER.md).