Skip to content

Commit c1178fa

Browse files
authored
Merge pull request inkonchain#21 from inkonchain/chore/mandatory-op-upgrade
chore: mandatory op upgrade
2 parents e51afc8 + 112891c commit c1178fa

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

op-geth/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
FROM golang:1.21 AS build-op-geth
1+
FROM golang:1.22 AS build-op-geth
22

33
WORKDIR /app
44

55
ENV REPO=https://github.com/ethereum-optimism/op-geth.git
6-
ENV VERSION=v1.101315.3
6+
ENV VERSION=v1.101411.1
77
# for verification:
8-
ENV COMMIT=8af19cf20261c0b62f98cc27da3a268f542822ee
8+
ENV COMMIT=4539f2d3a77f14bdad362c24e3773dc6aad87d5b
99

1010
RUN git clone $REPO --branch $VERSION --single-branch . && \
1111
git switch -c branch-$VERSION && \
1212
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
1313

1414
RUN go run build/ci.go install -static ./cmd/geth
1515

16-
FROM golang:1.21 AS run-op-geth
16+
FROM golang:1.22 AS run-op-geth
1717

1818
RUN apt-get update && \
1919
apt-get install -y --no-install-recommends \

op-node/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
FROM golang:1.21 AS build-op-node
1+
FROM golang:1.22 AS build-op-node
22

33
WORKDIR /app
44

55
ENV REPO=https://github.com/ethereum-optimism/optimism.git
6-
ENV VERSION=v1.9.3
6+
ENV VERSION=v1.9.5
77
# for verification:
8-
ENV COMMIT=e81c50de0a51954c64444b849be4768c8116cffb
8+
ENV COMMIT=5662448279e4fb16e073e00baeb6e458b12a59b2
99

1010
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
1111
git switch -c branch-$VERSION && \
1212
bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
1313

1414
RUN cd op-node && make VERSION=$VERSION op-node
1515

16-
FROM golang:1.21
16+
FROM golang:1.22
1717

1818
RUN apt-get update && \
1919
apt-get install -y --no-install-recommends \

0 commit comments

Comments
 (0)