11 lines
275 B
Docker
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"] |