Skip to content

Commit c5d3686

Browse files
authored
Merge pull request #26 from rabbitprincess/feature/v1.9.1
update op-node and op-geth version
2 parents 3aa48b9 + 987e114 commit c5d3686

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ buildx: buildx-init buildx-run buildx-bridge
2222
buildx-init:
2323
docker buildx build \
2424
--platform linux/amd64,linux/arm64 \
25-
-t dreamcacao/builderism_init:1.8.0 \
25+
-t dreamcacao/builderism_init:1.9.1 \
2626
-t dreamcacao/builderism_init:latest \
2727
--push ./init
2828

2929
buildx-run:
3030
docker buildx build \
3131
--platform linux/amd64,linux/arm64 \
32-
-t dreamcacao/builderism_run:1.8.0 \
32+
-t dreamcacao/builderism_run:1.9.1 \
3333
-t dreamcacao/builderism_run:latest \
3434
--push ./run
3535

init/3_config.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//-----------------------------------------------------------------------//
2-
// args / funcs
2+
// configs
33

44
local config = std.extVar("config");
55

init/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ENV PATH="~/.foundry/bin:${PATH}"
2222

2323
# clone optimism repository
2424
ENV OP_REPO=https://github.com/ethereum-optimism/optimism.git
25-
ENV OP_VERSION=${OP_VERSION:-v1.8.0}
25+
ENV OP_VERSION=${OP_VERSION:-v1.9.1}
2626
RUN mkdir -p ~/optimism && cd ~/optimism && \
2727
git clone $OP_REPO --depth 1 --branch $OP_VERSION --single-branch . && \
2828
git switch -c $OP_VERSION && \

run/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM golang:1.22 as op
33
WORKDIR /app
44

55
ENV OP_REPO=https://github.com/ethereum-optimism/optimism.git
6-
ENV OP_VERSION=${OP_VERSION:-v1.8.0}
6+
ENV OP_VERSION=${OP_VERSION:-v1.9.1}
77

88
RUN git clone $OP_REPO --depth 1 --branch op-node/$OP_VERSION --single-branch . && \
99
git switch -c branch-$OP_VERSION && \
@@ -16,7 +16,7 @@ FROM golang:1.22 as geth
1616
WORKDIR /app
1717

1818
ENV GETH_REPO=https://github.com/ethereum-optimism/op-geth.git
19-
ENV GETH_VERSION=${GETH_VERSION:-v1.101315.2}
19+
ENV GETH_VERSION=${GETH_VERSION:-v1.101408.0}
2020

2121
RUN git clone $GETH_REPO --depth 1 --branch $GETH_VERSION --single-branch . && \
2222
git switch -c branch-$GETH_VERSION && \

0 commit comments

Comments
 (0)