File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -24,11 +24,13 @@ WORKDIR /app
24
24
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
25
25
26
26
ENV REPO=https://github.com/paradigmxyz/reth.git
27
- ENV VERSION=v1.1.4
28
- ENV COMMIT=15fac0873e91ea29ab2e605bfba17bedcd7a6084
29
- RUN git clone $REPO --branch $VERSION --single-branch . && \
30
- git switch -c branch-$VERSION && \
31
- bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
27
+ ENV VERSION=v1.1.4-dev
28
+ ENV COMMIT=bc8d4fed1e7000e6ee08e1ba872b33be77cb52ef
29
+ # RUN git clone $REPO --branch $VERSION --single-branch . && \
30
+ # git switch -c branch-$VERSION && \
31
+ # bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
32
+ RUN git clone $REPO . && \
33
+ git checkout $COMMIT
32
34
33
35
RUN cargo build --bin op-reth --features $FEATURES --profile maxperf --manifest-path crates/optimism/bin/Cargo.toml
34
36
You can’t perform that action at this time.
0 commit comments