File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11### Build Nethermind From Git:
22
33## Builder stage: Compiles nethermind from a git repository
4- FROM mcr.microsoft.com/dotnet/sdk:9 .0-noble AS build
4+ FROM mcr.microsoft.com/dotnet/sdk:10 .0-noble AS build
55
66ARG github=nethermindeth/nethermind
77ARG tag=master
@@ -12,7 +12,7 @@ RUN echo "Cloning: $github - $tag" && \
1212 dotnet build -c release
1313
1414## Final stage: Sets up the environment for running nethermind
15- FROM mcr.microsoft.com/dotnet/aspnet:9 .0-noble
15+ FROM mcr.microsoft.com/dotnet/aspnet:10 .0-noble
1616
1717# Copy compiled binary from builder
1818COPY --from=build /nethermind/src/Nethermind/artifacts/bin/Nethermind.Runner/release /nethermind
Original file line number Diff line number Diff line change 22### Requires a copy of nethermind/ -> hive/clients/nethermind/
33
44## Builder stage: Compiles nethermind from a local directory
5- FROM mcr.microsoft.com/dotnet/sdk:9 .0 AS build
5+ FROM mcr.microsoft.com/dotnet/sdk:10 .0 AS build
66
77# Default local client path: clients/nethermind/<nethermind>
88ARG local_path=nethermind
@@ -11,13 +11,13 @@ ADD $local_path /nethermind
1111RUN cd /nethermind/src/Nethermind/Nethermind.Runner && dotnet build -c release
1212
1313## Final stage: Sets up the environment for running nethermind
14- FROM mcr.microsoft.com/dotnet/aspnet:9 .0-noble
14+ FROM mcr.microsoft.com/dotnet/aspnet:10 .0-noble
1515
1616# Copy compiled binary from builder
1717COPY --from=build /nethermind/src/Nethermind/artifacts/bin/Nethermind.Runner/release /nethermind
1818WORKDIR /nethermind
1919
20- RUN apt-get update && apt-get install -y jq curl libsnappy-dev libc6-dev libc6 && \
20+ RUN apt-get update && apt-get install -y jq curl && \
2121 rm -rf /var/lib/apt/lists/*
2222
2323# Create version.txt
You can’t perform that action at this time.
0 commit comments