File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ RUN apt-get update \
99 ca-certificates \
1010 cabextract \
1111 git \
12+ gnupg \
1213 gosu \
1314 gpg-agent \
1415 locales \
@@ -26,11 +27,9 @@ RUN apt-get update \
2627
2728# Install wine
2829ARG WINE_BRANCH="stable"
29- RUN apt-get update && DEBIAN_FRONTEND="noninteractive" apt-get install -y --no-install-recommends software-properties-common \
30- && wget -nv -O- https://dl.winehq.org/wine-builds/winehq.key | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add - \
31- && apt-add-repository "deb https://dl.winehq.org/wine-builds/ubuntu/ $(grep VERSION_CODENAME= /etc/os-release | cut -d= -f2) main" \
30+ RUN wget -nv -O- https://dl.winehq.org/wine-builds/winehq.key | APT_KEY_DONT_WARN_ON_DANGEROUS_USAGE=1 apt-key add - \
31+ && echo "deb https://dl.winehq.org/wine-builds/ubuntu/ $(grep VERSION_CODENAME= /etc/os-release | cut -d= -f2) main" >> /etc/apt/sources.list \
3232 && dpkg --add-architecture i386 \
33- && apt-get remove -y software-properties-common systemd* \
3433 && apt-get update \
3534 && DEBIAN_FRONTEND="noninteractive" apt-get install -y --install-recommends winehq-${WINE_BRANCH} \
3635 && rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments