From e72047a37586f5a929aaec0b8c73863d7209904b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20Remars?= Date: Wed, 4 Jul 2018 18:21:54 +0200 Subject: [PATCH] =?UTF-8?q?Replaced=20"--update-cache"=20argument=20with?= =?UTF-8?q?=20"--no-cache"=20in=20apk=20call=20to=20reduce=20alpine=20base?= =?UTF-8?q?=20image=20by=2010-12%=20(avoid=20useless=20indexes=20in=20/var?= =?UTF-8?q?/cache/apk)=20Signed-off-by:=20Micka=C3=ABl=20Remars=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- contrib/mkimage-alpine.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/mkimage-alpine.sh b/contrib/mkimage-alpine.sh index 03180e435a..db41ddc09d 100755 --- a/contrib/mkimage-alpine.sh +++ b/contrib/mkimage-alpine.sh @@ -29,7 +29,7 @@ getapk() { } mkbase() { - $TMP/sbin/apk.static --repository $MAINREPO --update-cache --allow-untrusted \ + $TMP/sbin/apk.static --repository $MAINREPO --no-cache --allow-untrusted \ --root $ROOTFS --initdb add alpine-base }