From b5781420c818fb838ef0739431cbed1faa32abd4 Mon Sep 17 00:00:00 2001 From: xZero707 Date: Sun, 6 Aug 2023 22:10:28 +0200 Subject: [PATCH] Deprecate/remove linux/armhf since it has been removed in base image --- README.md | 5 +++++ build/docker-bake.hcl | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f8b1712..3c647c2 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,11 @@ Attempt to fix several of WordPress anti-patterns in ready to deploy container * This is due to Docker Hub's sunsetting of free teams. See docker/hub-feedback#2314 * If you are using nlss/wordpress images, you should switch to ghcr.io/n0rthernl1ghts/wordpress * nlss/wordpress images will be removed in May. Further usage is not recommended, although we'll keep them up to date until then. +- 2023-08-06 Deprecation/removal of linux/armhf architecture + * 32-bit ARM is [officialy dead](https://www.androidauthority.com/arm-32-vs-64-bit-explained-1232065/). + * It has been deprecated/removed in the base + * This improves build speed as buidling linux/armhf is slow and was taking the most of the time + * Simplifies maintenance #### Public builds (docker) diff --git a/build/docker-bake.hcl b/build/docker-bake.hcl index 5d71cb8..865bdad 100644 --- a/build/docker-bake.hcl +++ b/build/docker-bake.hcl @@ -21,7 +21,7 @@ target "build-dockerfile" { } target "build-platforms" { - platforms = ["linux/amd64", "linux/armhf", "linux/aarch64"] + platforms = ["linux/amd64", "linux/aarch64"] } target "build-common" {