| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=22.04 |
| ADD file:d025507456f1d7d19195885b1c02a346454d60c9348cbd3be92431f2d7e2666e in / |
| CMD ["/bin/bash"] |
| LABEL maintainer=Tim Chaubet |
| VOLUME [/data] |
| ARG DEBIAN_FRONTEND=noninteractive |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt update -y && apt-get upgrade -y && apt-get install -y apt-utils && apt-get install -y software-properties-common tzdata && add-apt-repository multiverse && dpkg --add-architecture i386 && apt update -y && apt-get upgrade -y # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c useradd -m steam && cd /home/steam && echo steam steam/question select "I AGREE" | debconf-set-selections && echo steam steam/license note '' | debconf-set-selections && apt purge steam steamcmd && apt install -y gdebi-core libgl1-mesa-glx:i386 wget && apt install -y steam steamcmd && ln -s /usr/games/steamcmd /usr/bin/steamcmd # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt install -y wine winbind winetricks # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt install -y xserver-xorg xvfb # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt update -y && apt install -y jq # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c rm -rf /var/lib/apt/lists/* && apt clean && apt autoremove -y # buildkit |
| COPY start.sh /start.sh # buildkit |
| RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c chmod +x /start.sh # buildkit |
| CMD ["/start.sh"] |