File tree Expand file tree Collapse file tree 2 files changed +14
-11
lines changed
Expand file tree Collapse file tree 2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 1- FROM golang:1.21 AS op
1+ FROM golang:1.22 AS op
22
33WORKDIR /app
44
55ENV REPO=https://github.com/ethereum-optimism/optimism.git
6- ENV VERSION=v1.9.1
7- ENV COMMIT=4797ddb70e05d4952685bad53e608cb5606284e6
6+ ENV VERSION=v1.9.4
7+ ENV COMMIT=2c24e652161187f3e30045eac1e176e6b53c469d
88RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
99 git switch -c branch-$VERSION && \
1010 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
1111
1212RUN cd op-node && \
1313 make VERSION=$VERSION op-node
1414
15- FROM golang:1.21 AS geth
15+ FROM golang:1.22 AS geth
1616
1717WORKDIR /app
1818
1919ENV REPO=https://github.com/ethereum-optimism/op-geth.git
20- ENV VERSION=v1.101408 .0
21- ENV COMMIT=5c2e75862239c77d2873de1888ba52ee84c83178
20+ ENV VERSION=v1.101411 .0
21+ ENV COMMIT=d5a96613c22bc46238a21d6c0f805399c26c9d4c
2222RUN git clone $REPO --branch $VERSION --single-branch . && \
2323 git switch -c branch-$VERSION && \
2424 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Original file line number Diff line number Diff line change 1- FROM golang:1.21 AS op
1+ FROM golang:1.22 AS op
22
33WORKDIR /app
44
55ENV REPO=https://github.com/ethereum-optimism/optimism.git
6- ENV VERSION=v1.9.1
7- ENV COMMIT=4797ddb70e05d4952685bad53e608cb5606284e6
6+ ENV VERSION=v1.9.4
7+ ENV COMMIT=2c24e652161187f3e30045eac1e176e6b53c469d
88RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
99 git switch -c branch-$VERSION && \
1010 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
@@ -21,8 +21,11 @@ WORKDIR /app
2121RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2222
2323ENV REPO=https://github.com/paradigmxyz/reth.git
24- ENV COMMIT=c228fe15808c3acbf18dc3af1a03ef5cbdcda07a
25- RUN git clone $REPO . && git checkout $COMMIT
24+ ENV VERSION=v1.1.0
25+ ENV COMMIT=1ba631ba9581973e7c6cadeea92cfe1802aceb4a
26+ RUN git clone $REPO --branch $VERSION --single-branch . && \
27+ git switch -c branch-$VERSION && \
28+ bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
2629
2730RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf
2831
You can’t perform that action at this time.
0 commit comments