diff --git a/Dockerfile b/Dockerfile index d8bf4b5..a6660b1 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:6.0 AS Final +FROM mcr.microsoft.com/dotnet/aspnet:7.0 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 410931e..a21cf71 100644 --- a/prepare-node.sh +++ b/prepare-node.sh @@ -1,6 +1,6 @@ #!/bin/sh -nodeversion="v3.5.0" +nodeversion="v3.6.2" pluginsversion=$nodeversion echo "Downloading neo node $nodeversion" @@ -15,7 +15,6 @@ unzip ApplicationLogs.zip -d ./neo-cli/ unzip RpcServer.zip -d ./neo-cli/ unzip TokensTracker.zip -d ./neo-cli/ - sed -i "s/127.0.0.1/0.0.0.0/g" neo-cli/Plugins/RpcServer/config.json echo "Node Ready!" @@ -29,4 +28,3 @@ echo "Node Ready!" # wget https://github.com/neo-project/neo-modules/releases/download/$2/ApplicationLogs.zip # wget https://github.com/neo-project/neo-modules/releases/download/$2/RpcServer.zip # fi -