Some checks failed
Build and Publish Docker Image (Gitea Registry) / docker (push) Failing after 7s
13 lines
300 B
Docker
13 lines
300 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 ["/entrypoint.sh"] |