File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1- FROM golang:1.21 AS build-op-geth
1+ FROM golang:1.22 AS build-op-geth
22
33WORKDIR /app
44
55ENV 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
1010RUN git clone $REPO --branch $VERSION --single-branch . && \
1111 git switch -c branch-$VERSION && \
1212 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
1313
1414RUN 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
1818RUN apt-get update && \
1919 apt-get install -y --no-install-recommends \
Original file line number Diff line number Diff line change 1- FROM golang:1.21 AS build-op-node
1+ FROM golang:1.22 AS build-op-node
22
33WORKDIR /app
44
55ENV 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
1010RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
1111 git switch -c branch-$VERSION && \
1212 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
1313
1414RUN cd op-node && make VERSION=$VERSION op-node
1515
16- FROM golang:1.21
16+ FROM golang:1.22
1717
1818RUN apt-get update && \
1919 apt-get install -y --no-install-recommends \
You can’t perform that action at this time.
0 commit comments