79 lines
3.7 KiB
Docker
79 lines
3.7 KiB
Docker
# ==========================================
|
|
# STAGE 1: BUILDER
|
|
# ==========================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/2sharkystudios/base:ubuntu AS builder
|
|
|
|
LABEL author="Kyle Speight" maintainer="chillcog3142@proton.me"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y ca-certificates gnupg lsb-release wget curl git git-lfs iproute2 libgdiplus tini software-properties-common \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN wget -q https://dot.net/v1/dotnet-install.sh \
|
|
&& chmod +x dotnet-install.sh \
|
|
&& D_V="$(curl -sSL https://dotnet.microsoft.com/en-us/download/dotnet/9.0 | grep -i '<h3 id="sdk-9.*">SDK 9.*.*</h3>' | head -1 | awk -F\" '{print $3}' | awk '{print $2;}' | sed 's/<\/h3>//g')" \
|
|
&& ./dotnet-install.sh -i /usr/share -v "$D_V" \
|
|
&& ln -s /usr/share/dotnet /usr/bin/dotnet \
|
|
&& rm dotnet-install.sh
|
|
|
|
RUN mkdir -p /etc/apt/keyrings \
|
|
&& curl -sSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /etc/apt/keyrings/microsoft-prod.gpg \
|
|
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/microsoft-prod.gpg] https://packages.microsoft.com/repos/microsoft-ubuntu-jammy-prod jammy main" > /etc/apt/sources.list.d/microsoft-prod.list \
|
|
&& apt-get update \
|
|
&& apt-get install -y powershell \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /home/container/git
|
|
RUN git clone https://github.com/2SharkyStudios/SPT-Server-Build.git . \
|
|
&& git lfs pull
|
|
|
|
WORKDIR /home/container/git/SPTarkov.Server/
|
|
RUN dotnet restore \
|
|
&& dotnet build -o /home/container/build/ -c Release -p:SptBuildType=RELEASE -p:SptVersion=4.0.11
|
|
|
|
# ==========================================
|
|
# STAGE 2: RUNTIME
|
|
# ==========================================
|
|
FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/2sharkystudios/base:ubuntu AS runtime
|
|
|
|
LABEL author="Kyle Speight" maintainer="chillcog3142@proton.me"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
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 \
|
|
&& chmod +x dotnet-install.sh \
|
|
&& D_V="$(curl -sSL https://dotnet.microsoft.com/en-us/download/dotnet/9.0 | grep -i '<h3 id="sdk-9.*">SDK 9.*.*</h3>' | head -1 | awk -F\" '{print $3}' | awk '{print $2;}' | sed 's/<\/h3>//g')" \
|
|
&& ./dotnet-install.sh -i /usr/share -v "$D_V" \
|
|
&& ln -s /usr/share/dotnet /usr/bin/dotnet \
|
|
&& rm dotnet-install.sh
|
|
|
|
RUN mkdir -p /etc/apt/keyrings \
|
|
&& curl -sSL https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor -o /etc/apt/keyrings/microsoft-prod.gpg \
|
|
&& echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/microsoft-prod.gpg] https://packages.microsoft.com/repos/microsoft-ubuntu-jammy-prod jammy main" > /etc/apt/sources.list.d/microsoft-prod.list \
|
|
&& apt-get update \
|
|
&& apt-get install -y powershell \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y iproute2 libgdiplus tini \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /home/container/
|
|
COPY --from=builder /home/container/build/ /home/container/
|
|
|
|
USER container
|
|
ENV USER=container HOME=/home/container
|
|
|
|
COPY --chown=container:container ./../entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
STOPSIGNAL SIGINT
|
|
|
|
ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
|
|
CMD ["/entrypoint.sh"] |