Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
Downgrade operator v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev committed Jul 2, 2024
1 parent c693ed8 commit d7255d8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"upstream": [
{
"repo": "ssvlabs/ssv",
"version": "v1.3.6",
"version": "v1.3.2",
"arg": "OPERATOR_UPSTREAM_VERSION"
},
{
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:
OPERATOR_UPSTREAM_VERSION: v1.3.6
OPERATOR_UPSTREAM_VERSION: v1.3.2
restart: unless-stopped
volumes:
- operator-data:/data/operator
Expand Down
15 changes: 10 additions & 5 deletions operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ ARG OPERATOR_UPSTREAM_VERSION

FROM bloxstaking/ssv-node:${OPERATOR_UPSTREAM_VERSION}

# Use apt
RUN apt-get update && \
apt-get install -y curl jq ruby openssl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
# Use apt (Debian) --> SSV operator v1.3.6+
# RUN apt-get update && \
# apt-get install -y curl jq ruby openssl && \
# apt-get clean && \
# rm -rf /var/lib/apt/lists/* && \
# mkdir -p /data/operator/config

# Use apk (Alpine)
RUN apk update && \
apk add --no-cache curl jq ruby openssl && \
mkdir -p /data/operator/config

COPY node-config.yml /ssv-node/config/raw-node-config.yml
Expand Down

0 comments on commit d7255d8

Please sign in to comment.