LANCommander/LANCommander.Server/Dockerfile

16 lines
346 B
Text
Raw Permalink Normal View History

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
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
# 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
ENTRYPOINT ["/app/entrypoint.sh"]