在docker文件中:
from debian:latest
RUN apt-get install parallel
RUN parallel --citation <<< "will cite" 由于这个进入过程,docker构建根本不会完成。如何安装并行?
发布于 2020-05-13 21:21:32
RUN yes 'will cite' | parallel --citation这就是答案
https://stackoverflow.com/questions/61762189
复制相似问题