File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ buildx: buildx-init buildx-run buildx-bridge
2222buildx-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
2929buildx-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
Original file line number Diff line number Diff line change 11//-----------------------------------------------------------------------//
2- // args / funcs
2+ // configs
33
44local config = std.extVar("config" );
55
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ ENV PATH="~/.foundry/bin:${PATH}"
2222
2323# clone optimism repository
2424ENV 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 }
2626RUN mkdir -p ~/optimism && cd ~/optimism && \
2727 git clone $OP_REPO --depth 1 --branch $OP_VERSION --single-branch . && \
2828 git switch -c $OP_VERSION && \
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM golang:1.22 as op
33WORKDIR /app
44
55ENV 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
88RUN 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
1616WORKDIR /app
1717
1818ENV 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
2121RUN git clone $GETH_REPO --depth 1 --branch $GETH_VERSION --single-branch . && \
2222 git switch -c branch-$GETH_VERSION && \
You can’t perform that action at this time.
0 commit comments