File tree 2 files changed +11
-15
lines changed
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
3
3
WORKDIR /app
4
4
5
5
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
10
8
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
11
9
git switch -c branch-$VERSION && \
12
10
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
@@ -19,11 +17,8 @@ FROM golang:1.21 as geth
19
17
WORKDIR /app
20
18
21
19
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
27
22
RUN git clone $REPO --branch $VERSION --single-branch . && \
28
23
git switch -c branch-$VERSION && \
29
24
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
3
3
WORKDIR /app
4
4
5
5
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
10
8
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
11
9
git switch -c branch-$VERSION && \
12
10
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
@@ -23,9 +21,12 @@ WORKDIR /app
23
21
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
24
22
25
23
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" ]'
27
29
28
- RUN git clone $REPO . && git checkout $COMMIT
29
30
RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf
30
31
31
32
FROM ubuntu:22.04
You can’t perform that action at this time.
0 commit comments