From b754f0b516d8963d0601394368e148460b692e1e Mon Sep 17 00:00:00 2001 From: shuai Date: Thu, 30 May 2024 20:31:02 +0800 Subject: [PATCH] v3.7.4 --- Dockerfile | 2 +- prepare-node.sh | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a6660b1..1d7306e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /neo COPY prepare-node.sh . RUN sh ./prepare-node.sh -FROM mcr.microsoft.com/dotnet/aspnet:7.0 AS Final +FROM mcr.microsoft.com/dotnet/aspnet:8.0.6 AS Final RUN apt-get update && apt-get install -y screen \ curl \ && rm -rf /var/lib/apt/lists/* diff --git a/prepare-node.sh b/prepare-node.sh index a21cf71..cffe3f1 100644 --- a/prepare-node.sh +++ b/prepare-node.sh @@ -1,12 +1,13 @@ #!/bin/sh -nodeversion="v3.6.2" +nodeversion="v3.7.4" pluginsversion=$nodeversion echo "Downloading neo node $nodeversion" -wget https://github.com/neo-project/neo-node/releases/download/$nodeversion/neo-cli-linux-x64.zip +wget https://github.com/neo-project/neo/releases/download/$nodeversion/neo-cli-linux-x64.zip unzip neo-cli-linux-x64.zip -d ./ - +mv neo-cli-linux-x64 neo-cli + echo "Downloading plugins $pluginsversion" wget https://github.com/neo-project/neo-modules/releases/download/$pluginsversion/ApplicationLogs.zip wget https://github.com/neo-project/neo-modules/releases/download/$pluginsversion/RpcServer.zip