File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed
Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff line change 1- FROM golang:1.21 AS op
1+ FROM golang:1.22 AS op
22
33WORKDIR /app
44
55ENV REPO=https://github.com/ethereum-optimism/optimism.git
6- ENV VERSION=v1.9.1
7- ENV COMMIT=4797ddb70e05d4952685bad53e608cb5606284e6
6+ ENV VERSION=v1.10.2
7+ ENV COMMIT=8bf7ff60f34a7c5082cec5c56bed1f76cc1893ad
88RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
99 git switch -c branch-$VERSION && \
1010 bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
1111
12+ # Install 'just'
13+ RUN curl -sSfL 'https://just.systems/install.sh' | bash -s -- --to /usr/local/bin
14+
1215RUN cd op-node && \
1316 make VERSION=$VERSION op-node
1417
15- FROM mcr.microsoft.com/dotnet/sdk:8.0.403 -noble AS build
18+ FROM mcr.microsoft.com/dotnet/sdk:9.0 -noble AS build
1619
1720ARG BUILD_CONFIG=release
1821ARG TARGETARCH
1922
2023WORKDIR /app
2124
2225ENV REPO=https://github.com/NethermindEth/nethermind.git
23- ENV VERSION=1.29.1
24- ENV COMMIT=dfea52404006c6ce1b133b98f324dbfcb62773e1
26+ ENV VERSION=1.30.3
27+ ENV COMMIT=87c863793b2302209187432b6afe5d7d84918bab
2528RUN git clone $REPO --branch $VERSION --single-branch . && \
2629 git switch -c $VERSION
2730RUN bash -c '[ "$(git rev-parse HEAD)" = "$COMMIT" ]'
@@ -30,8 +33,7 @@ RUN TARGETARCH=${TARGETARCH#linux/} && \
3033 echo "Using architecture: $arch" && \
3134 dotnet publish src/Nethermind/Nethermind.Runner -c $BUILD_CONFIG -a $arch -o /publish --sc false
3235
33-
34- FROM mcr.microsoft.com/dotnet/aspnet:8.0
36+ FROM mcr.microsoft.com/dotnet/aspnet:9.0-noble
3537
3638RUN apt-get update && \
3739 apt-get install -y jq curl supervisor && \
You can’t perform that action at this time.
0 commit comments