mirror of
https://git.suyu.dev/suyu/ci-docker.git
synced 2026-01-04 21:55:44 +01:00
11 lines
484 B
Text
11 lines
484 B
Text
FROM debian:trixie
|
|
RUN apt-get update --yes \
|
|
&& apt-get -y install wget \
|
|
&& dpkg --add-architecture i386 \
|
|
&& mkdir -pm755 /etc/apt/keyrings \
|
|
&& wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key \
|
|
&& wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/debian/dists/trixie/winehq-trixie.sources \
|
|
&& apt-get update \
|
|
&& apt-get -y install winehq-stable \
|
|
&& apt-get clean \
|
|
&& wine winecfg
|