Bump proton version
This commit is contained in:
parent
1f669dd27e
commit
9c5e5424c3
4 changed files with 122 additions and 6 deletions
48
steamcmd/proton_9.13/Dockerfile
Normal file
48
steamcmd/proton_9.13/Dockerfile
Normal file
|
@ -0,0 +1,48 @@
|
|||
FROM debian:bookworm-slim
|
||||
|
||||
LABEL author="Tara Piccari" maintainer="tarapiccari@gmail.com"
|
||||
LABEL upstream="https://github.com/pelican-eggs/yolks"
|
||||
|
||||
ENV PROTON_VERSION=9-13
|
||||
|
||||
## install required packages
|
||||
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 tini file pipx
|
||||
RUN useradd -d /home/container -m container
|
||||
|
||||
# Download Proton GE
|
||||
RUN wget https://github.com/GloriousEggroll/proton-ge-custom/releases/download/GE-Proton${PROTON_VERSION}/GE-Proton${PROTON_VERSION}.tar.gz
|
||||
RUN tar -xzf GE-Proton*.tar.gz -C /usr/local/bin/ --strip-components=1
|
||||
RUN rm GE-Proton*.*
|
||||
|
||||
# Proton Fix machine-id
|
||||
RUN rm -f /etc/machine-id
|
||||
RUN dbus-uuidgen --ensure=/etc/machine-id
|
||||
RUN rm /var/lib/dbus/machine-id
|
||||
RUN dbus-uuidgen --ensure
|
||||
|
||||
#Setup Protontricks
|
||||
RUN pipx install protontricks
|
||||
|
||||
# Set up Winetricks
|
||||
RUN wget -q -O /usr/sbin/winetricks https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \
|
||||
&& chmod +x /usr/sbin/winetricks
|
||||
|
||||
## install rcon
|
||||
RUN cd /tmp/ \
|
||||
&& curl -sSL https://github.com/gorcon/rcon-cli/releases/download/v0.10.3/rcon-0.10.3-amd64_linux.tar.gz > rcon.tar.gz \
|
||||
&& tar xvf rcon.tar.gz \
|
||||
&& mv rcon-0.10.3-amd64_linux/rcon /usr/local/bin/
|
||||
|
||||
USER container
|
||||
ENV USER=container HOME=/home/container
|
||||
WORKDIR /home/container
|
||||
|
||||
STOPSIGNAL SIGINT
|
||||
|
||||
COPY --chown=container:container ./entrypoint.sh /entrypoint.sh
|
||||
RUN chmod +x /entrypoint.sh
|
||||
ENTRYPOINT ["/usr/bin/tini", "-g", "--"]
|
||||
CMD ["/entrypoint.sh"]
|
Loading…
Add table
Add a link
Reference in a new issue