mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-12 17:10:45 -05:00
19 lines
623 B
Docker
19 lines
623 B
Docker
# Use the .NET 8.0 SDK base image
|
|
FROM mcr.microsoft.com/dotnet/sdk:8.0
|
|
|
|
# Configure Node.js v20 repository
|
|
RUN curl -fsSL https://deb.nodesource.com/setup_20.10 | bash
|
|
|
|
# Install necessary tools and dependencies
|
|
# - git (duh)
|
|
# - zstd (caching action dependancy)
|
|
# - wget (downloading module packages)
|
|
# - jq (fetching data from JSON files)
|
|
# - p7zip-full (extracting archives)
|
|
# - nodejs (artifact action dependancy)
|
|
# - tree (pretty print build directory structure)
|
|
RUN apt-get update && \
|
|
apt-get install -y git zstd wget jq p7zip-full nodejs tree && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|