diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8b62664..ace047b 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -130,7 +130,7 @@ jobs: if: needs.check-tag-exists.outputs.proceed == 'true' runs-on: ubuntu-latest container: - image: refringe/spt-build-dotnet:0.0.4 + image: refringe/spt-build-dotnet:0.0.5 steps: - name: Clone run: | @@ -213,7 +213,7 @@ jobs: if: needs.check-tag-exists.outputs.proceed == 'true' runs-on: ubuntu-latest container: - image: refringe/spt-build-dotnet:0.0.4 + image: refringe/spt-build-dotnet:0.0.5 steps: - name: Clone run: | diff --git a/Dockerfile.dotnet b/Dockerfile.dotnet index ae6f7ef..2c13332 100644 --- a/Dockerfile.dotnet +++ b/Dockerfile.dotnet @@ -1,8 +1,11 @@ # Use the .NET 6.0 SDK base image FROM mcr.microsoft.com/dotnet/sdk:6.0 +# Configure Node.js v20 repository +RUN curl -fsSL https://deb.nodesource.com/setup_20.10 | bash + # Install necessary tools and dependencies (git, zstd, wget, jq, and p7zip-full) RUN apt-get update && \ - apt-get install -y git zstd wget jq p7zip-full && \ + apt-get install -y git zstd wget jq p7zip-full nodejs && \ apt-get clean && \ rm -rf /var/lib/apt/lists/*