Skip to content
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
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
},
{
"repo": "ssvlabs/ssv-dkg",
"version": "v3.1.0",
"version": "v3.0.3",
"arg": "DKG_UPSTREAM_VERSION"
},
{
Expand Down
4 changes: 2 additions & 2 deletions dkg/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build stage
FROM alpine:3.21 as build

ARG DGK_UPSTREAM_VERSION
ARG DKG_UPSTREAM_VERSION

WORKDIR /
RUN cd /
Expand All @@ -11,7 +11,7 @@ RUN apk update
RUN apk add --no-cache curl zip

# Download given version from Github and unzip
RUN curl -L -o /ssv-dkg.zip https://github.com/ssvlabs/ssv-dkg/releases/download/${DGK_UPSTREAM_VERSION}/ssvdkg-${DGK_UPSTREAM_VERSION}-linux-$(uname -m | sed -e 's/aarch64/arm64/g' -e 's/x86_64/amd64/g').zip
RUN curl -L -o /ssv-dkg.zip https://github.com/ssvlabs/ssv-dkg/releases/download/${DKG_UPSTREAM_VERSION}/ssvdkg-${DKG_UPSTREAM_VERSION}-linux-$(uname -m | sed -e 's/aarch64/arm64/g' -e 's/x86_64/amd64/g').zip
RUN unzip -j /ssv-dkg.zip

# Final stage
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ services:
build:
context: dkg
args:
DGK_UPSTREAM_VERSION: v3.0.3
DKG_UPSTREAM_VERSION: v3.0.3
STAKER_SCRIPTS_VERSION: v0.1.2
restart: on-failure
volumes:
Expand Down
Loading