Skip to content

Commit

Permalink
docker-bake.hcl: reënable arm32
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed Aug 11, 2023
1 parent 07d50d3 commit 635c0f7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ These images are available for the following OCI platforms:
- `linux/amd64`
- `linux/386` (`glibc` only)
- `linux/arm64`

> Note: images for `linux/arm/v7` and `linux/arm/v6` are currently unavailable, see issue [#12](https://github.com/void-linux/void-docker/issues/12) for more details
- `linux/arm/v7`
- `linux/arm/v6`

```
REPOSITORY TAG SIZE
Expand Down
4 changes: 2 additions & 2 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ target "_common" {

target "_common-glibc" {
inherits = ["_common"]
platforms = ["linux/amd64", "linux/386", "linux/arm64"] #, "linux/arm/v7", "linux/arm/v6"]
platforms = ["linux/amd64", "linux/386", "linux/arm64", "linux/arm/v7", "linux/arm/v6"]
args = { "LIBC" = "glibc" }
}

target "_common-musl" {
inherits = ["_common"]
platforms = ["linux/amd64", "linux/arm64"] #, "linux/arm/v7", "linux/arm/v6"]
platforms = ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/arm/v6"]
args = { "LIBC" = "musl" }
}

Expand Down

0 comments on commit 635c0f7

Please sign in to comment.