Skip to content

Commit

Permalink
Updated lighthouse and prysm ver in geth node
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenghaven committed Apr 3, 2024
1 parent 90752fc commit 97bab3b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions GethNode/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ RUN apt-get update -y && \
curl

# Geth
# found at https://geth.ethereum.org/downloads
ARG ETH_VER=1.13.14-2bd6bd01
RUN mkdir /opt/geth
RUN curl -fsSL https://gethstore.blob.core.windows.net/builds/geth-alltools-linux-amd64-${ETH_VER}.tar.gz \
Expand All @@ -33,7 +34,7 @@ ENV PATH="/opt/geth:${PATH}"
EXPOSE 8545

# Prysm
ARG PRYSM_VER=v5.0.0
ARG PRYSM_VER=v5.0.2
RUN mkdir /opt/prysm
RUN curl -L https://github.com/prysmaticlabs/prysm/raw/${PRYSM_VER}/prysm.sh \
--output /opt/prysm/prysm.sh
Expand All @@ -42,7 +43,7 @@ RUN echo $(md5sum /opt/prysm/prysm.sh)
RUN chmod 755 /opt/prysm/prysm.sh

# Lighthouse
ARG LIGHTHOUSE_VER=v5.0.0
ARG LIGHTHOUSE_VER=v5.1.3
RUN mkdir /opt/lighthouse
RUN curl -L https://github.com/sigp/lighthouse/releases/download/${LIGHTHOUSE_VER}/lighthouse-${LIGHTHOUSE_VER}-$(uname -m)-unknown-linux-gnu.tar.gz \
--output /opt/lighthouse/lighthouse-linux-gnu.tar.gz
Expand Down

0 comments on commit 97bab3b

Please sign in to comment.