mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-24 13:36:50 +01:00
89 lines
2.6 KiB
Docker
89 lines
2.6 KiB
Docker
FROM mcr.microsoft.com/dotnet/sdk:6.0-bookworm-slim AS build
|
|
|
|
# install node and npm
|
|
# replace shell with bash so we can source files
|
|
RUN curl --silent -o- https://raw.githubusercontent.com/creationix/nvm/v0.39.1/install.sh | sh
|
|
|
|
ENV NODE_VERSION 20.5.1
|
|
|
|
ENV NVM_DIR /root/.nvm
|
|
ENV NODE_PATH $NVM_DIR/v$NODE_VERSION/lib/node_modules
|
|
ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH
|
|
|
|
RUN . $NVM_DIR/nvm.sh \
|
|
&& nvm install $NODE_VERSION \
|
|
&& nvm use $NODE_VERSION \
|
|
&& apt-get update \
|
|
&& apt-get install -y \
|
|
dos2unix \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Build web control panel
|
|
WORKDIR /repo/build
|
|
|
|
COPY build/Common.props Common.props
|
|
COPY build/NugetCommon.props NugetCommon.props
|
|
COPY build/Version.props Version.props
|
|
COPY build/ControlPanelVersion.props ControlPanelVersion.props
|
|
COPY build/SrcCommon.props SrcCommon.props
|
|
|
|
WORKDIR /repo/src/Tgstation.Server.Host
|
|
|
|
COPY src/Tgstation.Server.Host/Tgstation.Server.Host.csproj ./
|
|
|
|
# I cant figure out how to run npm as non root so eh
|
|
RUN dotnet msbuild -target:NpmBuild
|
|
|
|
WORKDIR /repo
|
|
|
|
# Restore nuget packages
|
|
COPY tgstation-server.sln ./
|
|
|
|
COPY src/Tgstation.Server.Host.Console/Tgstation.Server.Host.Console.csproj src/Tgstation.Server.Host.Console/
|
|
COPY src/Tgstation.Server.Host.Watchdog/Tgstation.Server.Host.Watchdog.csproj src/Tgstation.Server.Host.Watchdog/
|
|
COPY src/Tgstation.Server.Api/Tgstation.Server.Api.csproj src/Tgstation.Server.Api/
|
|
COPY src/Tgstation.Server.Common/Tgstation.Server.Common.csproj src/Tgstation.Server.Common/
|
|
COPY src/Tgstation.Server.Host.Common/Tgstation.Server.Host.Common.csproj src/Tgstation.Server.Host.Common/
|
|
|
|
RUN dotnet restore -nowarn:MSB3202,nu1503 -p:RestoreUseSkipNonexistentTargets=false
|
|
|
|
# Final copy for building
|
|
COPY . .
|
|
|
|
#run dos2unix on tgs.docker.sh so we can build without issue on windows
|
|
RUN dos2unix build/tgs.docker.sh build/RemoveUnsupportedRuntimes.sh
|
|
|
|
WORKDIR /repo/src/Tgstation.Server.Host.Console
|
|
RUN dotnet publish -c Release -o /app \
|
|
&& cd ../.. \
|
|
&& build/RemoveUnsupportedRuntimes.sh /app
|
|
|
|
WORKDIR /repo/src/Tgstation.Server.Host
|
|
RUN dotnet publish -c Release -o /app/lib/Default \
|
|
&& cd ../.. \
|
|
&& build/RemoveUnsupportedRuntimes.sh /app/lib/Default \
|
|
&& mv /app/lib/Default/appsettings* /app
|
|
|
|
FROM mcr.microsoft.com/dotnet/aspnet:6.0-bookworm-slim
|
|
|
|
#needed for byond
|
|
RUN apt-get update \
|
|
&& apt-get install -y \
|
|
gcc-multilib \
|
|
gdb \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
EXPOSE 5000
|
|
|
|
ENV General__ValidInstancePaths__0 /tgs_instances
|
|
ENV FileLogging__Directory /tgs_logs
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=build /app .
|
|
COPY --from=build /repo/build/tgs.docker.sh tgs.sh
|
|
|
|
VOLUME ["/config_data", "/tgs_logs", "/app/lib"]
|
|
|
|
ENTRYPOINT ["./tgs.sh"]
|