Skip to content

Commit ad4fef7

Browse files
authored
use a hotfix commit (#381)
1 parent 1d5d06b commit ad4fef7

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

reth/Dockerfile

+7-5
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ WORKDIR /app
2424
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2525

2626
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
3234

3335
RUN cargo build --bin op-reth --features $FEATURES --profile maxperf --manifest-path crates/optimism/bin/Cargo.toml
3436

0 commit comments

Comments
 (0)