소스 검색

Merge pull request #37393 from mykeul/master

Added "--no-cache" to apk call to reduce alpine base image by 10-12% …
Vincent Demeester 7 년 전
부모
커밋
06dee4cc27
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      contrib/mkimage-alpine.sh

+ 1 - 1
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
 }