Skip to content

Commit 3eeb6de

Browse files
Add exclusion for linux-riscv64 in .dockerignore
Adds linux/riscv64 to DOCKER_ARCHS in Makefile and un-ignores the .build/linux-riscv64 directory in .dockerignore. Fixes #3311 Previously attempted in #3312 but closed when the author deleted their repository. That PR had received LGTM from a member. Signed-off-by: Benevolent <proffersor45@gmail.com> Signed-off-by: benevolentshrine <proffersor45@gmail.com> Update Makefile Adds riscv64 to DOCKER_ARCHS to enable building and publishing linux/riscv64 container images. Fixes #3311 Previously attempted in #3312 but closed when the author deleted their repository. That PR had received LGTM from a member. Signed-off-by: Benevolent <proffersor45@gmail.com> Signed-off-by: benevolentshrine <proffersor45@gmail.com>
1 parent a1cbf81 commit 3eeb6de

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

.dockerignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
!.build/linux-arm64
77
!.build/linux-ppc64le
88
!.build/linux-s390x
9+
!.build/linux-riscv64

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
all::
1616

1717
# Needs to be defined before including Makefile.common to auto-generate targets
18-
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x
18+
DOCKER_ARCHS ?= amd64 armv7 arm64 ppc64le s390x riscv64
1919

2020
include Makefile.common
2121

0 commit comments

Comments
 (0)