Files
egg-avorion/Dockerfile
alexveley a7d78e8b19
Some checks failed
Build and Publish Docker Image / docker (push) Failing after 2m22s
Add Avorion Pterodactyl compatibility image
2026-04-25 00:39:42 -04:00

11 lines
275 B
Docker

FROM ghcr.io/ptero-eggs/steamcmd:debian
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
WORKDIR /home/container
ENTRYPOINT ["/entrypoint.sh"]