mirror of
https://git.suyu.dev/suyu/ci-docker
synced 2024-11-21 14:29:15 -07:00
Pass -y to apt-get
This commit is contained in:
parent
a22c278b9e
commit
7243c474ef
1 changed files with 2 additions and 2 deletions
|
@ -1,11 +1,11 @@
|
|||
FROM debian:trixie
|
||||
RUN apt-get update --yes \
|
||||
&& apt-get install wget \
|
||||
&& 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 install winehq-stable \
|
||||
&& apt-get -y install winehq-stable \
|
||||
&& apt-get clean \
|
||||
&& wine winecfg
|
||||
|
|
Loading…
Reference in a new issue