Skip to content

Commit 931b9cc

Browse files
committed
fix(wine): match dependency installation on arm64 to amd64
1 parent ff64fc5 commit 931b9cc

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

wine/10-stable/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ RUN set -eux; \
9898
echo "Wine dependencies:"; cat /tmp/wine-deps.txt || :; \
9999
mv wine-installer/opt/wine* /opt/wine-${WINE_DIST}; \
100100
rm -rf wine-installer *.deb; \
101-
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --no-install-recommends; \
101+
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --install-recommends; \
102102
if [ -f /opt/wine-stable/bin/wine64 ]; then \
103103
ln -sf /opt/wine-${WINE_DIST}/bin/wine64 /usr/bin/wine; \
104104
ln -sf /opt/wine-${WINE_DIST}/bin/wine /usr/bin/wine32; \

wine/9-stable/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ RUN set -eux; \
9898
echo "Wine dependencies:"; cat /tmp/wine-deps.txt || :; \
9999
mv wine-installer/opt/wine* /opt/wine-${WINE_DIST}; \
100100
rm -rf wine-installer *.deb; \
101-
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --no-install-recommends; \
101+
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --install-recommends; \
102102
if [ -f /opt/wine-stable/bin/wine64 ]; then \
103103
ln -sf /opt/wine-${WINE_DIST}/bin/wine64 /usr/bin/wine; \
104104
ln -sf /opt/wine-${WINE_DIST}/bin/wine /usr/bin/wine32; \

wine/devel/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ RUN set -eux; \
9292
echo "Wine dependencies:"; cat /tmp/wine-deps.txt || :; \
9393
mv wine-installer/opt/wine* /opt/wine-${WINE_DIST}; \
9494
rm -rf wine-installer *.deb; \
95-
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --no-install-recommends; \
95+
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --install-recommends; \
9696
if [ -f /opt/wine-stable/bin/wine64 ]; then \
9797
ln -sf /opt/wine-${WINE_DIST}/bin/wine64 /usr/bin/wine; \
9898
ln -sf /opt/wine-${WINE_DIST}/bin/wine /usr/bin/wine32; \

wine/stable/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ RUN set -eux; \
9292
echo "Wine dependencies:"; cat /tmp/wine-deps.txt || :; \
9393
mv wine-installer/opt/wine* /opt/wine-${WINE_DIST}; \
9494
rm -rf wine-installer *.deb; \
95-
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --no-install-recommends; \
95+
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --install-recommends; \
9696
if [ -f /opt/wine-stable/bin/wine64 ]; then \
9797
ln -sf /opt/wine-${WINE_DIST}/bin/wine64 /usr/bin/wine; \
9898
ln -sf /opt/wine-${WINE_DIST}/bin/wine /usr/bin/wine32; \

wine/staging/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ RUN set -eux; \
9292
echo "Wine dependencies:"; cat /tmp/wine-deps.txt || :; \
9393
mv wine-installer/opt/wine* /opt/wine-${WINE_DIST}; \
9494
rm -rf wine-installer *.deb; \
95-
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --no-install-recommends; \
95+
xargs -ra "/tmp/wine-deps.txt" apt-get install -y --install-recommends; \
9696
if [ -f /opt/wine-stable/bin/wine64 ]; then \
9797
ln -sf /opt/wine-${WINE_DIST}/bin/wine64 /usr/bin/wine; \
9898
ln -sf /opt/wine-${WINE_DIST}/bin/wine /usr/bin/wine32; \

0 commit comments

Comments
 (0)