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

9 lines
289 B
Docker
Raw Normal View History

# Use the .NET 6.0 SDK base image
FROM mcr.microsoft.com/dotnet/sdk:6.0
# 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 clean && \
rm -rf /var/lib/apt/lists/*