Deprecate/remove linux/armhf since it has been removed in base image

This commit is contained in:
Aleksandar Puharic 2023-08-06 22:10:28 +02:00
parent f038f0e042
commit b5781420c8
Signed by: xZero707
GPG Key ID: 3CC53DCAA9C237BB
2 changed files with 6 additions and 1 deletions

View File

@ -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 * 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 * 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. * 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) #### Public builds (docker)

View File

@ -21,7 +21,7 @@ target "build-dockerfile" {
} }
target "build-platforms" { target "build-platforms" {
platforms = ["linux/amd64", "linux/armhf", "linux/aarch64"] platforms = ["linux/amd64", "linux/aarch64"]
} }
target "build-common" { target "build-common" {