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
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