File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,16 +3,16 @@ 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.7
7
- ENV COMMIT=f8143c8cbc4cc0c83922c53f17a1e47280673485
6
+ ENV VERSION=v1.9.0
7
+ ENV COMMIT=ec45f6634ab2855a4ae5d30c4e240d79f081d689
8
8
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
9
9
git switch -c branch-$VERSION && \
10
10
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
11
11
12
12
RUN cd op-node && \
13
13
make VERSION=$VERSION op-node
14
14
15
- FROM rust:1.79 AS reth
15
+ FROM rust:1.80 AS reth
16
16
17
17
ARG FEATURES=jemalloc,asm-keccak,optimism
18
18
@@ -21,7 +21,7 @@ WORKDIR /app
21
21
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
22
22
23
23
ENV REPO=https://github.com/paradigmxyz/reth.git
24
- ENV COMMIT=29dc8fc05f74111c9ff67ddcd03638ee081b1dc0
24
+ ENV COMMIT=ffd71a0b024e6c20f15cb95bcdf1b4882fc91093
25
25
RUN git clone $REPO . && git checkout $COMMIT
26
26
27
27
RUN cargo build --bin op-reth --locked --features $FEATURES --profile maxperf
You can’t perform that action at this time.
0 commit comments