Skip to content

Commit

Permalink
bump geth and lodestar
Browse files Browse the repository at this point in the history
  • Loading branch information
toshihiko-okubo committed Nov 12, 2024
1 parent 55411a1 commit bab0ac6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions tests/e2e/chains/ethereum/Dockerfile.lodestar
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ ARG VERSION=latest
FROM chainsafe/lodestar:${VERSION}

# Install package of jq
RUN apk update && \
apk upgrade && \
apk add --no-cache \
jq curl coreutils && \
rm -rf /var/cache/apk/*
RUN apt-get update && \
apt-get install -y \
bash jq curl coreutils && \
apt-get autoremove -y && \
rm -rf /var/lib/apt/lists/*

COPY ./scripts/lodestar_entrypoint.sh /lodestar_entrypoint.sh

Expand All @@ -15,4 +15,4 @@ ARG BEACON_HTTP_PORT
ENV GETH_HTTP_PORT=$GETH_HTTP_PORT
ENV BEACON_HTTP_PORT=$BEACON_HTTP_PORT

ENTRYPOINT ["sh", "/lodestar_entrypoint.sh"]
ENTRYPOINT ["bash", "/lodestar_entrypoint.sh"]
4 changes: 2 additions & 2 deletions tests/e2e/chains/ethereum/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GETH_HTTP_PORT ?= 8546
BEACON_HTTP_PORT ?= 19596
GETH_VERSION ?= v1.14.5
LODESTAR_VERSION ?= v1.19.0
GETH_VERSION ?= v1.14.11
LODESTAR_VERSION ?= v1.22.0
DOCKER_COMPOSE ?= docker compose
COMPOSE_UP_OPTS ?= -d
HARDHAT ?= npx hardhat
Expand Down

0 comments on commit bab0ac6

Please sign in to comment.