| # debian.sh --arch 'amd64' out/ 'trixie' '@1757289600' |
| USER root |
| ARG DEBIAN_FRONTEND=noninteractive |
| ARG WINE_BRANCH=stable |
| ENV NVIDIA_DRIVER_CAPABILITIES=all |
| ENV NVIDIA_VISIBLE_DEVICES=all |
| RUN |2 DEBIAN_FRONTEND=noninteractive WINE_BRANCH=stable /bin/sh -c ln -fs /usr/share/zoneinfo/Etc/UTC /etc/localtime && apt-get update && apt-get install -y tzdata && dpkg-reconfigure --frontend noninteractive tzdata # buildkit |
| RUN |2 DEBIAN_FRONTEND=noninteractive WINE_BRANCH=stable /bin/sh -c apt-get update && apt-get install -y --no-install-recommends vim locales gnupg gosu gpg-agent curl unzip ca-certificates cabextract git wget pkg-config libxext6 libvulkan1 libvulkan-dev vulkan-tools sudo iproute2 procps kmod libc6-dev libpci3 libelf-dev dbus-x11 xauth xcvt xserver-xorg-core xvfb cron xz-utils # buildkit |
| WORKDIR / |
| RUN |2 DEBIAN_FRONTEND=noninteractive WINE_BRANCH=stable /bin/sh -c locale-gen en_US.UTF-8 # buildkit |
| ENV LANG=en_US.UTF-8 |
| RUN |2 DEBIAN_FRONTEND=noninteractive WINE_BRANCH=stable /bin/sh -c sudo mkdir -pm755 /etc/apt/keyrings && wget -O - https://dl.winehq.org/wine-builds/winehq.key | sudo gpg --dearmor -o /etc/apt/keyrings/winehq-archive.key - && sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/plucky/winehq-plucky.sources && dpkg --add-architecture i386 && apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y --install-recommends winehq-${WINE_BRANCH} zstd libc-bin libc6 && apt-get clean && rm -rf /var/lib/apt/lists/* # buildkit |