Skip to content

Commit f0eb7f1

Browse files
authored
op-node: v1.7.7 / op-geth: v1.101315.2 / op-reth: v1.0.0-rc.2 (#279)
1 parent d056b51 commit f0eb7f1

File tree

2 files changed

+11
-15
lines changed

2 files changed

+11
-15
lines changed

geth/Dockerfile

+4-9
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ FROM golang:1.21 as op
33
WORKDIR /app
44

55
ENV REPO=https://github.com/ethereum-optimism/optimism.git
6-
ENV VERSION=v1.7.6
7-
# for verification:
8-
ENV COMMIT=4a487b8920daa9dc4b496d691d5f283f9bb659b1
9-
6+
ENV VERSION=v1.7.7
7+
ENV COMMIT=f8143c8cbc4cc0c83922c53f17a1e47280673485
108
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
119
git switch -c branch-$VERSION && \
1210
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
@@ -19,11 +17,8 @@ FROM golang:1.21 as geth
1917
WORKDIR /app
2018

2119
ENV REPO=https://github.com/ethereum-optimism/op-geth.git
22-
ENV VERSION=v1.101315.1
23-
# for verification:
24-
ENV COMMIT=3fbae78d638d1b903e702a14f98644c1103ae1b3
25-
26-
# avoid depth=1, so the geth build can read tags
20+
ENV VERSION=v1.101315.2
21+
ENV COMMIT=7c2819836018bfe0ca07c4e4955754834ffad4e0
2722
RUN git clone $REPO --branch $VERSION --single-branch . && \
2823
git switch -c branch-$VERSION && \
2924
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'

reth/Dockerfile

+7-6
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@ FROM golang:1.21 AS op
33
WORKDIR /app
44

55
ENV REPO=https://github.com/ethereum-optimism/optimism.git
6-
ENV VERSION=v1.7.6
7-
# for verification:
8-
ENV COMMIT=4a487b8920daa9dc4b496d691d5f283f9bb659b1
9-
6+
ENV VERSION=v1.7.7
7+
ENV COMMIT=f8143c8cbc4cc0c83922c53f17a1e47280673485
108
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
119
git switch -c branch-$VERSION && \
1210
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
@@ -23,9 +21,12 @@ WORKDIR /app
2321
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2422

2523
ENV REPO=https://github.com/paradigmxyz/reth.git
26-
ENV COMMIT=7d55a14b1fca006260737dec1f9d3e93cd4c2008
24+
ENV VERSION=v1.0.0-rc.2
25+
ENV COMMIT=d786b459d93a6e1f7cf903a37f0542aafd671e7f
26+
RUN git clone $REPO --branch $VERSION --single-branch . && \
27+
git switch -c branch-$VERSION && \
28+
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
2729

28-
RUN git clone $REPO . && git checkout $COMMIT
2930
RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf
3031

3132
FROM ubuntu:22.04

0 commit comments

Comments
 (0)