Skip to content

Commit

Permalink
Drop support for arm/v7 on Alpine
Browse files Browse the repository at this point in the history
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
  • Loading branch information
JonasAlfredsson committed Dec 13, 2021
1 parent fc85190 commit a024e4d
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,5 @@ jobs:
platforms: |
linux/amd64
linux/arm64
linux/arm/v7
push: ${{ github.event_name != 'pull_request' }}
tags: jonasal/nginx-certbot:latest-alpine
1 change: 0 additions & 1 deletion .github/workflows/build_tags.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ jobs:
platforms: |
linux/amd64
linux/arm64
linux/arm/v7
pull: true
no-cache: true
push: true
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dev:
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 ./

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

push:
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 comments on commit a024e4d

Please sign in to comment.