
- Removed the `numactl` package from all images as SteamCMD no longer seems to have issues logging in with a real Steam account (at least on bookworm, which all these images use). The following cleanup changes only apply to Dockerfiles that had `numactl` removed: - Changed all Dockerfiles to use `apt` (instead of `apt-get`) for consistency. - Changed all `apt install` packages to a "list" format for consistency and easier diff reading for future package additions/removals. - Added `locales` to `games\source\Dockerfile` and set the locale. - Moved all instances of the `useradd` command down with the other user and working directory commands. Also added the shell specification flag if it was missing. - Unified all Dockerfiles to use space-indenting and fixed some indent spacing. - Cleaned up some comments.
56 lines
2.2 KiB
Docker
56 lines
2.2 KiB
Docker
# ---------------------------------------
|
|
# Generic Wine image based on Wine staging
|
|
# ---------------------------------------
|
|
FROM ghcr.io/parkervcp/yolks:debian
|
|
|
|
LABEL author="Michael Parker" maintainer="parker@pterodactyl.io"
|
|
LABEL org.opencontainers.image.licenses=MIT
|
|
|
|
# Install required packages
|
|
RUN dpkg --add-architecture i386 \
|
|
&& apt update -y \
|
|
&& apt install -y --no-install-recommends \
|
|
gnupg2 \
|
|
tzdata \
|
|
software-properties-common \
|
|
libntlm0 \
|
|
winbind \
|
|
xvfb \
|
|
xauth \
|
|
python3 \
|
|
libncurses5:i386 \
|
|
libncurses6:i386 \
|
|
libsdl2-2.0-0 \
|
|
libsdl2-2.0-0:i386
|
|
|
|
# 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/
|
|
|
|
# Install wine and with recommends
|
|
RUN mkdir -pm755 /etc/apt/keyrings
|
|
RUN wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key
|
|
RUN wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/bookworm/winehq-bookworm.sources
|
|
RUN apt update
|
|
RUN apt install --install-recommends winehq-staging cabextract wine-binfmt -y
|
|
|
|
# Set up Winetricks
|
|
RUN wget -q -O /usr/sbin/winetricks https://raw.githubusercontent.com/Winetricks/winetricks/master/src/winetricks \
|
|
&& chmod +x /usr/sbin/winetricks
|
|
|
|
ENV HOME=/home/container
|
|
ENV WINEPREFIX=/home/container/.wine
|
|
ENV WINEDEBUG=-all
|
|
ENV WINEDLLOVERRIDES="mscoree,mshtml="
|
|
ENV DISPLAY=:0
|
|
ENV DISPLAY_WIDTH=1024
|
|
ENV DISPLAY_HEIGHT=768
|
|
ENV DISPLAY_DEPTH=16
|
|
ENV AUTO_UPDATE=1
|
|
ENV XVFB=1
|
|
|
|
COPY ./../entrypoint.sh /entrypoint.sh
|
|
CMD [ "/bin/bash", "/entrypoint.sh" ]
|