forked from LiamAEdwards/SS14-Docker-Linux-Server
43 lines
1.3 KiB
Docker
43 lines
1.3 KiB
Docker
# Build stage
|
|
FROM mcr.microsoft.com/dotnet/sdk:7.0 AS build
|
|
|
|
# Update and install necessary tools
|
|
RUN apt-get -y update && \
|
|
apt-get -y install curl unzip wget git
|
|
|
|
# Download and extract SS14 server
|
|
ADD https://cdn.centcomm.spacestation14.com/builds/wizards/builds/70246ae10eff287ca83193cce73b79e7424c7e4a/SS14.Server_linux-x64.zip SS14.Server_linux-x64.zip
|
|
RUN unzip SS14.Server_linux-x64.zip -d /ss14/
|
|
|
|
# Download and build Watchdog
|
|
RUN wget https://github.com/space-wizards/SS14.Watchdog/archive/d0a68202284e837e987d38b3e99f15a6a53f2a0b.zip -O Watchdog.zip && \
|
|
unzip Watchdog.zip -d Watchdog && \
|
|
cd Watchdog/SS14* && \
|
|
dotnet publish -c Release -r linux-x64 --no-self-contained && \
|
|
cp -r SS14.Watchdog/bin/Release/net7.0/linux-x64/publish /ss14
|
|
|
|
# Server stage
|
|
FROM mcr.microsoft.com/dotnet/runtime:7.0 AS server
|
|
|
|
# Copy from the build stage
|
|
COPY --from=build /ss14 /ss14
|
|
|
|
# Install necessary tools
|
|
RUN apt-get -y update && apt-get -y install unzip
|
|
|
|
# Expose necessary ports
|
|
EXPOSE 1212/tcp
|
|
EXPOSE 1212/udp
|
|
EXPOSE 5000/tcp
|
|
EXPOSE 5000/udp
|
|
|
|
# Set volume for instances
|
|
VOLUME [ "/ss14/instances" ]
|
|
|
|
# Add configurations
|
|
ADD appsettings.yml /ss14/appsettings.yml
|
|
ADD server_config.toml /ss14/server_config.toml
|
|
|
|
# Set the entry point for the container
|
|
ENTRYPOINT ["/ss14/Robust.Server"]
|