summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2019-02-27 17:02:38 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-02-28 22:10:57 +0100
commit7b931f26f90f380a29e5eb0390e6793348bc2a8c (patch)
treec1edc78e784702628edf51cde2438bf9f3a88fd4
parent26346869cd2b0dacb95ea9e2065f0da894042675 (diff)
scripts/genrootfs.sh: exclude dev/*
exclude /dev/* from minirootfs. https://github.com/gliderlabs/docker-alpine/issues/356 (cherry picked from commit 2f07f9eb884af94f47b94c1fdde5e2ecdd177a19)
-rwxr-xr-xscripts/genrootfs.sh4
1 files changed, 1 insertions, 3 deletions
diff --git a/scripts/genrootfs.sh b/scripts/genrootfs.sh
index 51180276324..59eed20f978 100755
--- a/scripts/genrootfs.sh
+++ b/scripts/genrootfs.sh
@@ -54,6 +54,4 @@ http://dl-cdn.alpinelinux.org/alpine/$branch/main
http://dl-cdn.alpinelinux.org/alpine/$branch/community
EOF
-#rm -rf "$tmp"/var/cache/apk/*
-
-tar --numeric-owner -c -C "$tmp" . | gzip -9n > "$outfile"
+tar --numeric-owner --exclude='dev/*' -c -C "$tmp" . | gzip -9n > "$outfile"