Update Dockerfile with Wine integration

This commit is contained in:
2026-07-22 15:07:27 -03:00
parent 53fee66e82
commit c2622f3b9c
2 changed files with 19 additions and 3 deletions
+3 -1
View File
@@ -40,4 +40,6 @@ Thumbs.db
# TrueNAS SCALE app metadata (if present)
ix-app.json
ACEVO.License
ACEVO.License
*.env
+16 -2
View File
@@ -2,7 +2,8 @@ FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y \
ca-certificates \
curl \
@@ -11,7 +12,20 @@ RUN apt-get update && \
xvfb \
winbind \
cabextract \
xz-utils && \
xz-utils \
software-properties-common && \
rm -rf /var/lib/apt/lists/*
# WineHQ repository
RUN mkdir -pm755 /etc/apt/keyrings && \
curl -fsSL https://dl.winehq.org/wine-builds/winehq.key \
| gpg --dearmor \
| tee /etc/apt/keyrings/winehq.gpg > /dev/null && \
echo "deb [arch=amd64,i386 signed-by=/etc/apt/keyrings/winehq.gpg] https://dl.winehq.org/wine-builds/ubuntu/ jammy main" \
> /etc/apt/sources.list.d/winehq.list
RUN apt-get update && \
apt-get install -y --install-recommends winehq-stable && \
rm -rf /var/lib/apt/lists/*
# Create steam user