0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-12 22:50:46 -05:00

Update build.yaml and Dockerfile.dotnet

This commit is contained in:
Refringe 2024-03-04 21:27:11 -05:00
parent 278eba2aec
commit 05a42cfb67
No known key found for this signature in database
GPG Key ID: DA8524051241DD36
2 changed files with 6 additions and 3 deletions

View File

@ -130,7 +130,7 @@ jobs:
if: needs.check-tag-exists.outputs.proceed == 'true' if: needs.check-tag-exists.outputs.proceed == 'true'
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: refringe/spt-build-dotnet:0.0.4 image: refringe/spt-build-dotnet:0.0.5
steps: steps:
- name: Clone - name: Clone
run: | run: |
@ -213,7 +213,7 @@ jobs:
if: needs.check-tag-exists.outputs.proceed == 'true' if: needs.check-tag-exists.outputs.proceed == 'true'
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: refringe/spt-build-dotnet:0.0.4 image: refringe/spt-build-dotnet:0.0.5
steps: steps:
- name: Clone - name: Clone
run: | run: |

View File

@ -1,8 +1,11 @@
# Use the .NET 6.0 SDK base image # Use the .NET 6.0 SDK base image
FROM mcr.microsoft.com/dotnet/sdk:6.0 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) # Install necessary tools and dependencies (git, zstd, wget, jq, and p7zip-full)
RUN apt-get update && \ 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 && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* rm -rf /var/lib/apt/lists/*