diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..5628ed5 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +geth-data/ +reth-data/ diff --git a/.gitignore b/.gitignore index b8be14d..b2f231e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /.idea/ /geth-data/ -/reth-data/ \ No newline at end of file +/reth-data/ +.DS_Store diff --git a/reth/Dockerfile b/reth/Dockerfile index 0cae8fa..862add0 100644 --- a/reth/Dockerfile +++ b/reth/Dockerfile @@ -20,9 +20,8 @@ WORKDIR /app RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential -#TODO: Revert to upstream, once https://github.com/paradigmxyz/reth/pull/9105 is merged. -ENV REPO=https://github.com/danyalprout/reth.git -ENV COMMIT=c79cbf4a918480556bd37204942a2d69827fed9f +ENV REPO=https://github.com/paradigmxyz/reth.git +ENV COMMIT=29dc8fc05f74111c9ff67ddcd03638ee081b1dc0 RUN git clone $REPO . && git checkout $COMMIT RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf