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/ \