Skip to content

Commit

Permalink
Add armv7
Browse files Browse the repository at this point in the history
  • Loading branch information
fwcd committed Aug 30, 2023
1 parent 1cc2c6c commit 2635154
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ jobs:
uses: docker/build-push-action@v4
with:
context: .
platforms: linux/amd64,linux/arm64 # TODO: 32-bit (linux/arm/v7 and linux/386)
platforms: linux/amd64,linux/arm64,linux/arm/v7 # TODO: 32-bit x86 (linux/386)
push: true # TODO: Only push on main
tags: ghcr.io/fwcd/docker-archlinux:latest,ghcr.io/fwcd/docker-archlinux:${{ steps.date.outputs.DATE }}
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM ghcr.io/fwcd/archlinuxarm-docker AS bootstrap-base-arm64
FROM ghcr.io/fwcd/archlinuxarm-docker AS bootstrap-base-armv7
FROM archlinux AS bootstrap-base-amd64

FROM bootstrap-base-${TARGETARCH} AS bootstrap
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ Unofficial, automated Docker multi-platform images of Arch Linux for the followi
| ------------ | --------------- | ------------ |
| x86_64 | `linux/amd64` | [Arch Linux](https://archlinux.org) |
| aarch64 | `linux/arm64` | [Arch Linux ARM](https://archlinuxarm.org) |
| armv7 | `linux/arm/v7` | [Arch Linux ARM](https://archlinuxarm.org) |

0 comments on commit 2635154

Please sign in to comment.