Skip to content

Commit fe4084e

Browse files
committed
fix(wine): add armhf to builder stage
1 parent 701b726 commit fe4084e

5 files changed

Lines changed: 5 additions & 0 deletions

File tree

wine/10-stable/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ RUN set -eux; \
1818
export WINE_FILES_DIR="/tmp/wine-files"; \
1919
mkdir -p "${WINE_FILES_DIR}"; \
2020
if [ "${TARGETARCH}" = "arm64" ]; then \
21+
dpkg --add-architecture armhf; \
2122
apt-get update; \
2223
apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
2324
ca-certificates curl wget gnupg xz-utils dpkg-dev; \

wine/9-stable/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ RUN set -eux; \
1818
export WINE_FILES_DIR="/tmp/wine-files"; \
1919
mkdir -p "${WINE_FILES_DIR}"; \
2020
if [ "${TARGETARCH}" = "arm64" ]; then \
21+
dpkg --add-architecture armhf; \
2122
apt-get update; \
2223
apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
2324
ca-certificates curl wget gnupg xz-utils dpkg-dev; \

wine/devel/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN set -eux; \
1717
export WINE_FILES_DIR="/tmp/wine-files"; \
1818
mkdir -p "${WINE_FILES_DIR}"; \
1919
if [ "${TARGETARCH}" = "arm64" ]; then \
20+
dpkg --add-architecture armhf; \
2021
apt-get update; \
2122
apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
2223
ca-certificates curl wget gnupg xz-utils dpkg-dev; \

wine/stable/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN set -eux; \
1717
export WINE_FILES_DIR="/tmp/wine-files"; \
1818
mkdir -p "${WINE_FILES_DIR}"; \
1919
if [ "${TARGETARCH}" = "arm64" ]; then \
20+
dpkg --add-architecture armhf; \
2021
apt-get update; \
2122
apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
2223
ca-certificates curl wget gnupg xz-utils dpkg-dev; \

wine/staging/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ RUN set -eux; \
1717
export WINE_FILES_DIR="/tmp/wine-files"; \
1818
mkdir -p "${WINE_FILES_DIR}"; \
1919
if [ "${TARGETARCH}" = "arm64" ]; then \
20+
dpkg --add-architecture armhf; \
2021
apt-get update; \
2122
apt-get install -o APT::Keep-Downloaded-Packages="false" -y --no-install-recommends \
2223
ca-certificates curl wget gnupg xz-utils dpkg-dev; \

0 commit comments

Comments
 (0)