如何在Dockerfile RUN中使用管道(ioredirection)?

前端之家收集整理的这篇文章主要介绍了如何在Dockerfile RUN中使用管道(ioredirection)?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Dockerfile中的以下行不起作用:

RUN git archive master | tar -x -C /path

错误信息:

fatal: Not a valid object name
tar: This does not look like a tar archive
tar: Exiting with failure status due to prevIoUs errors

如何解决这个问题?

最佳答案
以下变化怎么样:git archive master | tar xf – -C /路径?
原文链接:https://www.f2er.com/docker/436848.html

猜你在找的Docker相关文章