Skip to content

Commit 08d37de

Browse files
committed
debian: don't build arm64 packages since nginx.org provides them now
1 parent f836ba8 commit 08d37de

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile-debian.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ RUN set -x \
3030
&& nginxPackages="%%PACKAGES%%
3131
" \
3232
&& case "$dpkgArch" in \
33-
amd64|i386) \
33+
amd64|i386|arm64) \
3434
# arches officialy built by upstream
3535
echo "deb %%PACKAGEREPO%% %%DEBIAN_VERSION%% nginx" >> /etc/apt/sources.list.d/nginx.list \
3636
&& apt-get update \

mainline/debian-perl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN set -x \
4141
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} \
4242
" \
4343
&& case "$dpkgArch" in \
44-
amd64|i386) \
44+
amd64|i386|arm64) \
4545
# arches officialy built by upstream
4646
echo "deb https://nginx.org/packages/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list \
4747
&& apt-get update \

mainline/debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN set -x \
4040
nginx-module-njs=${NGINX_VERSION}+${NJS_VERSION}-${PKG_RELEASE} \
4141
" \
4242
&& case "$dpkgArch" in \
43-
amd64|i386) \
43+
amd64|i386|arm64) \
4444
# arches officialy built by upstream
4545
echo "deb https://nginx.org/packages/mainline/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list \
4646
&& apt-get update \

stable/debian-perl/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ RUN set -x \
4141
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} \
4242
" \
4343
&& case "$dpkgArch" in \
44-
amd64|i386) \
44+
amd64|i386|arm64) \
4545
# arches officialy built by upstream
4646
echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list \
4747
&& apt-get update \

stable/debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ RUN set -x \
4040
nginx-module-njs=${NGINX_VERSION}.${NJS_VERSION}-${PKG_RELEASE} \
4141
" \
4242
&& case "$dpkgArch" in \
43-
amd64|i386) \
43+
amd64|i386|arm64) \
4444
# arches officialy built by upstream
4545
echo "deb https://nginx.org/packages/debian/ buster nginx" >> /etc/apt/sources.list.d/nginx.list \
4646
&& apt-get update \

0 commit comments

Comments
 (0)