Skip to content
This repository was archived by the owner on Aug 6, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions dappnode_package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,18 @@
{
"name": "ssv.dnp.dappnode.eth",
"version": "0.1.1",
"upstreamVersion": "v1.3.4",
"upstreamRepo": "bloxapp/ssv",
"upstreamArg": "UPSTREAM_VERSION",
"upstream":[
{
"repo": "ssvlabs/ssv",
"version": "v1.3.4",
"arg": "OPERATOR_UPSTREAM_VERSION"
},
{
"repo": "ssvlabs/ssv-dkg",
"version": "v2.1.0",
"arg": "DKG_UPSTREAM_VERSION"
}
],
"architectures": ["linux/amd64"],
"shortDescription": "Secret Shared Validator for Ethereum mainnet",
"description": "SSV.network is a decentralized ETH staking network enabling the distributed operation of an Ethereum validator. The network allows both users and operators to diversify staking risks, optimize performance, and promote decentralization across the Ethereum consensus layer.",
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
build:
context: operator
args:
UPSTREAM_VERSION: v1.3.4
OPERATOR_UPSTREAM_VERSION: v1.3.4
restart: unless-stopped
volumes:
- operator-data:/data/operator
Expand Down
4 changes: 2 additions & 2 deletions operator/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ARG UPSTREAM_VERSION
ARG OPERATOR_UPSTREAM_VERSION

FROM bloxstaking/ssv-node:${UPSTREAM_VERSION}
FROM bloxstaking/ssv-node:${OPERATOR_UPSTREAM_VERSION}

# Use apt
RUN apt-get update && \
Expand Down