Compare commits

...

2 Commits

2 changed files with 19 additions and 3 deletions
+2
View File
@@ -41,3 +41,5 @@ Thumbs.db
ix-app.json ix-app.json
ACEVO.License ACEVO.License
*.env
+16 -2
View File
@@ -2,7 +2,8 @@ FROM ubuntu:22.04
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \ RUN dpkg --add-architecture i386 && \
apt-get update && \
apt-get install -y \ apt-get install -y \
ca-certificates \ ca-certificates \
curl \ curl \
@@ -11,7 +12,20 @@ RUN apt-get update && \
xvfb \ xvfb \
winbind \ winbind \
cabextract \ 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/* rm -rf /var/lib/apt/lists/*
# Create steam user # Create steam user