Skip to content

Commit b027ccc

Browse files
committed
GitHub: only build docker images for 64bit ARM
To disincentivize users of 32bit machines to use lnd, we removed the ARMv7 (32bit) target for docker images there. It therefore doesn't make sense to provide LiT images for 32bit machines either.
1 parent 3d93358 commit b027ccc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
uses: docker/build-push-action@v2
3939
with:
4040
push: true
41-
platforms: linux/amd64,linux/arm/v7,linux/arm64
41+
platforms: linux/amd64,linux/arm64
4242
tags: "${{ env.DOCKER_REPO }}/${{ env.DOCKER_IMAGE }}:${{ env.RELEASE_VERSION }}"
4343
build-args: checkout=${{ env.RELEASE_VERSION }}
4444

0 commit comments

Comments
 (0)