added botwm

This commit is contained in:
2023-12-31 00:30:37 +02:00
parent d72a190b7b
commit b859ab242a
12 changed files with 853 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
FROM ubuntu
EXPOSE "5050/tcp"
LABEL type=GAME
ENV DISPLAY :0
WORKDIR /opt
RUN dpkg --add-architecture i386 && apt-get update && apt-get upgrade -y && apt-get install -y dotnet6
COPY server-files /opt/botwm
WORKDIR /opt/botwm
RUN useradd botwm -d /opt
RUN chown -R botwm:botwm /opt
WORKDIR /opt/botwm
USER botwm:botwm
ENTRYPOINT [ "dotnet", "BOTW.DedicatedServer.dll" ]