summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonatas Abraitis <donatas@opensourcerouting.org>2024-06-14 16:33:32 +0300
committerDonatas Abraitis <donatas@opensourcerouting.org>2024-09-12 09:53:00 +0300
commitfb9c18cd9629d4bcc11321c3b13ad16682461d6e (patch)
tree534c656dd7b1d8483b9c147b9e2ca52ecd957574
parent371f3d3cf14c7c44568472e44cb7956983033563 (diff)
docker: Set ABUILD_APK_INDEX_OPTS for frr build
In build() stage of abuild, it does `apk index ...` where frr* packages are unsigned. We don't sign them here, and thus we need to specify `--allow-untrusted`. Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
-rw-r--r--alpine/APKBUILD.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/alpine/APKBUILD.in b/alpine/APKBUILD.in
index 2cb3feec15..855b585903 100644
--- a/alpine/APKBUILD.in
+++ b/alpine/APKBUILD.in
@@ -33,6 +33,8 @@ _libdir=/usr/lib
_user=frr
build() {
+ export ABUILD_APK_INDEX_OPTS="--allow-untrusted"
+
cd "$builddir"
./configure \