13 lines
450 B
Docker
13 lines
450 B
Docker
FROM ubuntu:24.04
|
|
|
|
RUN apt-get update \
|
|
apt-get install -y wget software-properties-common gnupg2 winbind xvfb \
|
|
dpkg --add-architecture i386 \
|
|
wget -nc https://dl.winehq.org/wine-builds/winehq.key \
|
|
apt-key add winehq.key \
|
|
add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ noble main' \
|
|
apt-get update \
|
|
apt-get install -y winehq-stable \
|
|
apt-get install -y winetricks \
|
|
apt-get clean -y \
|
|
apt-get autoremove -y
|