Update Dockerfile

This commit is contained in:
Kyle Speight
2026-05-30 03:20:30 -07:00
parent 7da2232fbb
commit dc89aa89fe
+4 -2
View File
@@ -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/ \