Skip to content

Commit

Permalink
v3.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashuaidehao committed May 30, 2024
1 parent 3911d75 commit b754f0b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*
Expand Down
7 changes: 4 additions & 3 deletions prepare-node.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit b754f0b

Please sign in to comment.