Adjust entrypoints and add steam sniper

This commit is contained in:
zontreck 2024-09-04 19:30:13 -07:00
parent 1cf361059c
commit e8dec3f984
25 changed files with 157 additions and 40 deletions

View file

@ -4,7 +4,7 @@ LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
LABEL upstream="https://github.com/pelican-eggs/yolks"
RUN apt-get update
RUN apt-get install -y tzdata iproute2 git ca-certificates
RUN apt-get install -y tzdata iproute2 git ca-certificates tini
RUN useradd -m -d /home/container -s /bin/bash container
ENV USER=container HOME=/home/container
@ -16,5 +16,5 @@ STOPSIGNAL SIGINT
COPY --chown=container:container ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/bin/bash", "-c", "--"]
ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
CMD ["/entrypoint.sh"]