spt4.0.0(eft0.16.6.0.36679)

This commit is contained in:
AirryCo
2025-05-29 18:21:26 +08:00
parent 5c6c8fa1a4
commit 0460721bdf
5 changed files with 196 additions and 373 deletions

View File

@@ -1,19 +1,23 @@
FROM node:22.12.0-bullseye AS server-builder
RUN apt update && apt install -y git git-lfs p7zip-full && \
git clone -b 3.11.x-DEV --depth=1 https://github.com/AirryCo/spt-server.git /snapshot && \
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS server-builder
ARG SPT_VERSION
ARG SPT_BUILD_TYPE
RUN apt update && apt install -y git git-lfs wget && \
git clone -b develop --depth=1 https://git.rui.he.cn:3000/SP-Tarkov/server-csharp.git /snapshot && \
cd /snapshot && git lfs pull && \
cd project && \
npm install && npm run build:release && \
cd Libraries/SPTarkov.Server.Assets/Assets/configs && sed -i "s/\"projectName\": \"SPT\",/\"projectName\": \"AirryCo's SPT Linux\",/g" core.json && \
cd /snapshot/Libraries/SPTarkov.Server.Assets/Assets/images/launcher && rm bg.png && wget https://raw.githubusercontent.com/AirryCo/spt-server-ci/refs/heads/main/custom/bg.png && \
cd /snapshot && \
dotnet publish ./SPTarkov.Server/SPTarkov.Server.csproj -c Release -f net9.0 -r linux-x64 -p:IncludeNativeLibrariesForSelfExtract=true -p:PublishSingleFile=true --self-contained false -p:SptBuildType=$SPT_BUILD_TYPE -p:SptVersion=$SPT_VERSION -p:SptBuildTime=$( date +%Y%m%d ) -p:SptCommit=$(git rev-parse --short HEAD) && \
rm SPTarkov.Server/bin/Release/net9.0/linux-x64/publish/*.pdb && \
rm -rf /var/lib/apt/lists/*
FROM debian:bookworm-slim
FROM mcr.microsoft.com/dotnet/aspnet:9.0-bookworm-slim
LABEL author="AirryCo <henry@stblog.com.cn>"
ENV TZ=Asia/Shanghai
COPY --from=server-builder /snapshot/project/build/ /app/spt-server/
COPY --from=server-builder /snapshot/SPTarkov.Server/bin/Release/net9.0/linux-x64/publish/ /app/spt-server/
VOLUME /opt/spt-server
WORKDIR /opt/spt-server
EXPOSE 6969
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]