File tree Expand file tree Collapse file tree 2 files changed +11
-15
lines changed
Expand file tree Collapse file tree 2 files changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,8 @@ FROM golang:1.21 as op
33WORKDIR /app
44
55ENV 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
108RUN 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
1917WORKDIR /app
2018
2119ENV 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
2722RUN git clone $REPO --branch $VERSION --single-branch . && \
2823 git switch -c branch-$VERSION && \
2924 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Original file line number Diff line number Diff line change @@ -3,10 +3,8 @@ FROM golang:1.21 AS op
33WORKDIR /app
44
55ENV 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
108RUN 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
2321RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
2422
2523ENV 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
2930RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf
3031
3132FROM ubuntu:22.04
You can’t perform that action at this time.
0 commit comments