Create stationeers dedicated server docker image
This commit is contained in:
commit
32025a8a18
3 changed files with 49 additions and 0 deletions
19
Dockerfile
Normal file
19
Dockerfile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
FROM steamcmd/steamcmd:debian-13
|
||||
|
||||
LABEL maintainer="laborratte5+stationeers-dd@gmail.com"
|
||||
|
||||
ARG UID=1000
|
||||
ARG GID=1000
|
||||
|
||||
WORKDIR /
|
||||
|
||||
COPY install_stationeers_dedicated.txt "/install_stationeers_dedicated.txt"
|
||||
RUN steamcmd +runscript /install_stationeers_dedicated.txt
|
||||
|
||||
COPY start-server.sh "/start-server.sh"
|
||||
CMD chmod +x /start-server.sh
|
||||
|
||||
EXPOSE 27015/udp
|
||||
EXPOSE 27016/udp
|
||||
|
||||
ENTRYPOINT ["bash", "/start-server.sh"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue