File tree 2 files changed +14
-8
lines changed
2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -3,12 +3,15 @@ FROM golang:1.22 AS op
3
3
WORKDIR /app
4
4
5
5
ENV REPO=https://github.com/ethereum-optimism/optimism.git
6
- ENV VERSION=v1.10.0
7
- ENV COMMIT=910c9ade39c0bcdff5f2badd94efbe016a428e73
6
+ ENV VERSION=v1.10.2
7
+ ENV COMMIT=8bf7ff60f34a7c5082cec5c56bed1f76cc1893ad
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
+ # Install 'just'
13
+ RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bin
14
+
12
15
RUN cd op-node && \
13
16
make VERSION=$VERSION op-node
14
17
@@ -17,8 +20,8 @@ FROM golang:1.22 AS geth
17
20
WORKDIR /app
18
21
19
22
ENV REPO=https://github.com/ethereum-optimism/op-geth.git
20
- ENV VERSION=v1.101411.2
21
- ENV COMMIT=3dd9b0274bae3d3d2c80ef517563a360108e8cf6
23
+ ENV VERSION=v1.101411.4
24
+ ENV COMMIT=efa05b1bf5c22a60745e638ad9d4adadfe3daba9
22
25
RUN git clone $REPO --branch $VERSION --single-branch . && \
23
26
git switch -c branch-$VERSION && \
24
27
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
Original file line number Diff line number Diff line change @@ -3,12 +3,15 @@ FROM golang:1.22 AS op
3
3
WORKDIR /app
4
4
5
5
ENV REPO=https://github.com/ethereum-optimism/optimism.git
6
- ENV VERSION=v1.10.0
7
- ENV COMMIT=910c9ade39c0bcdff5f2badd94efbe016a428e73
6
+ ENV VERSION=v1.10.2
7
+ ENV COMMIT=8bf7ff60f34a7c5082cec5c56bed1f76cc1893ad
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
+ # Install 'just'
13
+ RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bin
14
+
12
15
RUN cd op-node && \
13
16
make VERSION=$VERSION op-node
14
17
@@ -21,8 +24,8 @@ WORKDIR /app
21
24
RUN apt-get update && apt-get -y upgrade && apt-get install -y git libclang-dev pkg-config curl build-essential
22
25
23
26
ENV REPO=https://github.com/paradigmxyz/reth.git
24
- ENV VERSION=v1.1.2
25
- ENV COMMIT=496bf0bf715f0a1fafc198f8d72ccd71913d1a40
27
+ ENV VERSION=v1.1.4
28
+ ENV COMMIT=15fac0873e91ea29ab2e605bfba17bedcd7a6084
26
29
RUN git clone $REPO --branch $VERSION --single-branch . && \
27
30
git switch -c branch-$VERSION && \
28
31
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
You can’t perform that action at this time.
0 commit comments