Files
egg-avorion/Dockerfile
alexveley e4a65359c7
Some checks failed
Build and Publish Docker Image (Gitea Registry) / docker (push) Failing after 21s
Align runtime with Ptero steamcmd entrypoint (eval startup, AUTO_UPDATE); fix install SteamCMD login and Linux platform.
2026-04-25 01:53:24 -04:00

13 lines
329 B
Docker

FROM ghcr.io/ptero-eggs/steamcmd:debian
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends libnss-wrapper \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
USER container
WORKDIR /home/container
ENTRYPOINT ["/usr/bin/tini", "-g", "--", "/entrypoint.sh"]