diff --git a/linux/advanced/vscode-server/devops/Dockerfile b/linux/advanced/vscode-server/devops/Dockerfile index 752465649..15105e903 100644 --- a/linux/advanced/vscode-server/devops/Dockerfile +++ b/linux/advanced/vscode-server/devops/Dockerfile @@ -205,6 +205,11 @@ RUN dotnet help && \ pwsh-preview -v && \ pwsh -v +# install dotnet tools +RUN dotnet tool list -g && \ + dotnet tool install -g dotnet-script && \ + dotnet tool list -g + ################################################################## # AMXXModX setup ################################################################## diff --git a/linux/advanced/vscode-server/dotnet/Dockerfile b/linux/advanced/vscode-server/dotnet/Dockerfile index 51639c1ec..ecb1e9688 100644 --- a/linux/advanced/vscode-server/dotnet/Dockerfile +++ b/linux/advanced/vscode-server/dotnet/Dockerfile @@ -69,6 +69,11 @@ RUN dotnet help && \ pwsh-preview -v && \ pwsh -v +# install dotnet tools +RUN dotnet tool list -g && \ + dotnet tool install -g dotnet-script && \ + dotnet tool list -g + ################################################################## # cleaninig up ##################################################################