2025-11-18 19:50:48 -06:00
|
|
|
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS base
|
2025-03-05 17:12:11 -06:00
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
EXPOSE 1337
|
2025-03-06 19:52:59 -06:00
|
|
|
EXPOSE 213/udp
|
2025-03-05 17:12:11 -06:00
|
|
|
EXPOSE 35891/udp
|
|
|
|
|
|
2025-11-18 19:50:48 -06:00
|
|
|
COPY ./published /app
|
|
|
|
|
COPY entrypoint.sh /app/entrypoint.sh
|
|
|
|
|
COPY steamcmd.sh /usr/local/bin/steamcmd
|
|
|
|
|
|
2025-08-03 16:36:56 -05:00
|
|
|
# Make entrypoint script executable
|
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
2025-08-12 18:56:44 -05:00
|
|
|
RUN chmod +x /usr/local/bin/steamcmd
|
2025-08-03 16:36:56 -05:00
|
|
|
|
|
|
|
|
ENTRYPOINT ["/app/entrypoint.sh"]
|