Skip to content
Draft
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
4 changes: 2 additions & 2 deletions simulators/ethereum/eest/consume-engine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM python:3.10-slim
## Default fixtures
ARG fixtures=latest-stable-release
ENV INPUT=${fixtures}
ARG branch=main
ARG branch=add-ethrex-mapper
ENV BRANCH=${branch}

## Install dependencies
Expand All @@ -14,7 +14,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

## Clone and install EEST
RUN git clone https://github.com/ethereum/execution-spec-tests.git --branch "$BRANCH" --single-branch --depth 1
RUN git clone https://github.com/lambdaclass/execution-spec-tests.git --branch "$BRANCH" --single-branch --depth 1
WORKDIR execution-spec-tests
RUN pip install uv && uv sync

Expand Down