Skip to content

Commit a024e4d

Browse files
Drop support for arm/v7 on Alpine
Some strange issue make so that this arch fails to build on Alpine. To not hinder the 3.0.0 release we drop this arch, and hopefully we can reintroduce it in the future. More info here: pyca/cryptography#6673 and here: rust-lang/cargo#2808
1 parent fc85190 commit a024e4d

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

.github/workflows/build_latest.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,5 @@ jobs:
7878
platforms: |
7979
linux/amd64
8080
linux/arm64
81-
linux/arm/v7
8281
push: ${{ github.event_name != 'pull_request' }}
8382
tags: jonasal/nginx-certbot:latest-alpine

.github/workflows/build_tags.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ jobs:
8282
platforms: |
8383
linux/amd64
8484
linux/arm64
85-
linux/arm/v7
8685
pull: true
8786
no-cache: true
8887
push: true

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dev:
2121
docker buildx build --build-arg BUILDX_QEMU_ENV=true --platform linux/amd64,linux/386,linux/arm64,linux/arm/v7 --tag jonasal/nginx-certbot:dev -f ./Dockerfile ./
2222

2323
dev-alpine:
24-
docker buildx build --platform linux/amd64,linux/386,linux/arm64,linux/arm/v7 --tag jonasal/nginx-certbot:dev-alpine -f ./Dockerfile-alpine ./
24+
docker buildx build --platform linux/amd64,linux/arm64 --tag jonasal/nginx-certbot:dev-alpine -f ./Dockerfile-alpine ./
2525

2626
push:
2727
docker buildx build --build-arg BUILDX_QEMU_ENV=true --platform linux/amd64,linux/386,linux/arm64,linux/arm/v7 --tag jonasal/nginx-certbot:dev --pull --no-cache --push .

0 commit comments

Comments
 (0)