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

Commit

Permalink
Use Debian commands in operator Dockerfile (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
dappnodedev authored Jul 16, 2024
1 parent c3fc133 commit 8449d61
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions operator/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,10 @@ ARG OPERATOR_UPSTREAM_VERSION
FROM bloxstaking/ssv-node:${OPERATOR_UPSTREAM_VERSION}

# 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 && \
RUN apt-get update && \
apt-get install -y --no-install-recommends curl jq ruby openssl && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* && \
mkdir -p /data/operator/config

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

0 comments on commit 8449d61

Please sign in to comment.