I ran into [this](https://github.com/docker/hub-feedback/issues/727) issue when building this docker image. It seems to be a sporadic issue related to using tar in docker, I haven't looked deeper than someone mentioned that `--absolute-names` helps, which I tried and it builds now.
There are no absolute paths in the hadoop tar so as you say this actually has no effect, but it must change something internal to tar since my build fails without it: ``` Step 21/29 : RUN cd /tmp && wget -q https://archive.cloudera.com/cdh5/cdh/5/hadoop-${HADOOP_VERSION}-cdh5.11.0.tar.gz && tar xzf hadoop-${HADOOP_VERSION}-cdh5.11.0.tar.gz --strip-components 1 -C $HADOOP_HOME && rm hadoop-${HADOOP_VERSION}-cdh5.11.0.tar.gz ---> Running in 406a118eff9e tar: share/hadoop/mapreduce1: Directory renamed before its status could be extracted tar: Exiting with failure status due to previous errors ``` It may not be a problem for the automated build of this repository so I can remove it. Thoughts? [ Full content available at: https://github.com/apache/incubator-airflow-ci/pull/3 ] This message was relayed via gitbox.apache.org for [email protected]
