Fix dependency and permission issue in docker build
Change-Id: Ie0263b2ba6d98f5ca2bc63029987e7ad3e84fd6c
diff --git a/bucklets/node.bucklet b/bucklets/node.bucklet
index 3239e46..c5cc14a 100644
--- a/bucklets/node.bucklet
+++ b/bucklets/node.bucklet
@@ -25,7 +25,7 @@
genrule(
name = 'node-bin-' + version,
- bash = 'tar -xf $(location :node-release-' + version + ') && ' +
+ bash = 'tar --no-same-owner -xf $(location :node-release-' + version + ') && ' +
'mv ' + file_name + ' $OUT && ' +
'chmod +x $OUT',
out = 'node-binaries',