mirror of
https://github.com/YuzuZensai/palworld-server-docker.git
synced 2026-03-30 16:28:50 +00:00
first working version
This commit is contained in:
18
Dockerfile
Normal file
18
Dockerfile
Normal file
@@ -0,0 +1,18 @@
|
||||
FROM cm2network/steamcmd:root
|
||||
LABEL maintainer="thijs@loef.dev"
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
xdg-user-dirs
|
||||
|
||||
|
||||
ENV PORT=8211 \
|
||||
PLAYERS=16 \
|
||||
MULTITHREADING=FALSE
|
||||
|
||||
COPY ./scripts/* /home/steam/server/
|
||||
RUN chmod +x /home/steam/server/init.sh /home/steam/server/start.sh
|
||||
|
||||
WORKDIR /home/steam/server
|
||||
|
||||
EXPOSE ${PORT}
|
||||
ENTRYPOINT ["/home/steam/server/init.sh"]
|
||||
Reference in New Issue
Block a user