wine/Dockerfile
Benjamin Palko e66e1c7572 keyrings
2025-03-21 22:15:24 -04:00

14 lines
544 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 \
mkdir -pm755 /etc/apt/keyrings \
wget -O - https://dl.winehq.org/wine-builds/winehq.key | gpg --dearmor -o /etc/apt/keyrings/winehq-archive.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