added botwm
This commit is contained in:
14
breath-of-the-wild-multiplayer/Dockerfile
Normal file
14
breath-of-the-wild-multiplayer/Dockerfile
Normal 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" ]
|
||||
Reference in New Issue
Block a user