17 lines
456 B
Docker
17 lines
456 B
Docker
FROM ghcr.io/gameservermanagers/steamcmd:latest
|
|
#FROM cm2network/steamcmd:steam
|
|
|
|
ARG DATA_DIR="/stationeers/game_data"
|
|
ARG SAVES_DIR
|
|
ARG APP_ID=600760
|
|
|
|
# Re-use the entrypoint script of the steamcmd image and map it to a sensible command s it can be used internally
|
|
#RUN ln -s /docker-entrypoint.sh /steamcmd
|
|
|
|
#RUN steamcmd +force_install_dir "$DATA_DIR" +login anonymous +app_update 600760 +quit
|
|
|
|
|
|
EXPOSE 27016/udp
|
|
|
|
WORKDIR "$DATA_DIR"
|
|
ENTRYPOINT ["echo"] |