Skip to content

Commit 44929c4

Browse files
committed
op-node(1.9.4), op-geth(v1.101411.0), op-reth(1.1.0)
1 parent c41489f commit 44929c4

File tree

2 files changed

+14
-11
lines changed

2 files changed

+14
-11
lines changed

geth/Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
FROM golang:1.21 AS op
1+
FROM golang:1.22 AS op
22

33
WORKDIR /app
44

55
ENV 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
88
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
99
git switch -c branch-$VERSION && \
1010
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
1111

1212
RUN 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

1717
WORKDIR /app
1818

1919
ENV 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
2222
RUN git clone $REPO --branch $VERSION --single-branch . && \
2323
git switch -c branch-$VERSION && \
2424
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'

reth/Dockerfile

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.21 AS op
1+
FROM golang:1.22 AS op
22

33
WORKDIR /app
44

55
ENV 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
88
RUN 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
2121
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2222

2323
ENV 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

2730
RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf
2831

0 commit comments

Comments
 (0)