0
0
mirror of https://github.com/sp-tarkov/build.git synced 2025-02-12 16:50:45 -05:00
build/Dockerfile.dotnet

19 lines
623 B
Docker
Raw Normal View History

# 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
2024-03-04 21:46:32 -05:00
# 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 && \
2024-03-04 21:46:32 -05:00
apt-get install -y git zstd wget jq p7zip-full nodejs tree && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*