From dc89aa89fe1afb68edda2d4f953e2cc19b86a8c0 Mon Sep 17 00:00:00 2001 From: Kyle Speight Date: Sat, 30 May 2026 03:20:30 -0700 Subject: [PATCH] Update Dockerfile --- tarkov/v4.0.11/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tarkov/v4.0.11/Dockerfile b/tarkov/v4.0.11/Dockerfile index 6697865..106de9d 100644 --- a/tarkov/v4.0.11/Dockerfile +++ b/tarkov/v4.0.11/Dockerfile @@ -8,7 +8,8 @@ USER container ENV USER=container HOME=/home/container WORKDIR /home/container/ -RUN apt-get update && apt-get install -y ca-certificates gnupg lsb-release wget curl \ +RUN apt-get update \ + && apt-get install -y ca-certificates gnupg lsb-release wget curl \ && rm -rf /var/lib/apt/lists/* RUN wget -q https://dot.net/v1/dotnet-install.sh \ @@ -26,7 +27,8 @@ RUN mkdir -p /etc/apt/keyrings \ && rm -rf /var/lib/apt/lists/* # 4. Install remaining dependencies -RUN apt-get update && apt-get install -y git git-lfs iproute2 libgdiplus tini software-properties-common \ +RUN apt-get update \ + && apt-get install -y git git-lfs iproute2 libgdiplus tini software-properties-common \ && rm -rf /var/lib/apt/lists/* RUN mkdir -p /home/container/git/ /home/container/build/ \