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

@ -1,4 +1,4 @@
FROM debian:bookworm
FROM debian:bookworm-slim
LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
LABEL upstream="https://github.com/pelican-eggs/yolks"
@ -9,7 +9,7 @@ ENV PROTON_VERSION=9.13
RUN dpkg --add-architecture i386
RUN apt update
RUN apt install -y --no-install-recommends wget iproute2 gnupg2 software-properties-common libntlm0 winbind xvfb xauth libncurses5-dev:i386 libncurses6 dbus libgdiplus lib32gcc-s1
RUN apt install -y alsa-tools libpulse0 pulseaudio libpulse-dev libasound2 libao-common gnutls-bin gnupg locales numactl cabextract curl python3 python3-pip python3-setuptools file pipx
RUN apt install -y alsa-tools libpulse0 pulseaudio libpulse-dev libasound2 libao-common gnutls-bin gnupg locales numactl cabextract curl python3 python3-pip python3-setuptools tini file pipx
RUN useradd -d /home/container -m container
# Download Proton GE
@ -44,5 +44,5 @@ STOPSIGNAL SIGINT
COPY --chown=container:container ./entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/bin/bash", "-c", "--"]
ENTRYPOINT ["/usr/bin/bash", "-g", "--"]
CMD ["/entrypoint.sh"]