mirror of
https://github.com/sp-tarkov/build.git
synced 2025-02-13 02:10:46 -05:00
9 lines
286 B
Docker
9 lines
286 B
Docker
# 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 p7zip-full && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|