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"
@ -10,7 +10,7 @@ RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y tar curl gcc build-essential g++ lib32gcc-s1 libgcc-12-dev libgcc-11-dev libcurl4-gnutls-dev:i386 libssl-dev:i386 libcurl4:i386 lib32tinfo6 libtinfo6:i386 lib32z1 lib32stdc++6 libncurses5:i386 libcurl3-gnutls:i386 libsdl2-2.0-0:i386 libsdl2-2.0-0 iproute2 gdb libsdl1.2debian libfontconfig1 telnet net-tools netcat-traditional tzdata numactl xvfb wget
RUN apt-get install -y python3 python3-dev apt-transport-https iproute2 sqlite3 xvfb libgdiplus
RUN apt-get install -y python3 python3-dev apt-transport-https iproute2 sqlite3 xvfb libgdiplus tini
RUN wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
&& dpkg -i packages-microsoft-prod.deb \
@ -41,5 +41,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"]