Bash大括号扩展无法在Dockerfile RUN命令上运行

前端之家收集整理的这篇文章主要介绍了Bash大括号扩展无法在Dockerfile RUN命令上运行前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Dockerfile中运行以下RUN命令,期望在每个列出的子目录下创建“logs”目录:
RUN mkdir -p /opt/seagull/{diameter-env,h248-env,http-env,msrp-env,octcap-env,radius-env,sip-env,synchro-env,xcap-env}/logs

但是当我检查图像时,我看到一个字面上称为“{diameter-env,xcap-env”的目录}“在/ opt / seagull下创建,而不是发生大括号扩展.

我能做错什么?

你没有使用大括号扩展,因为你没有使用Bash.如果你看一下 documentation for the RUN command

RUN (shell form,the command is run in a shell,which by default is /bin/sh -c on Linux or cmd /S /C on Windows)

并且:

Note: To use a different shell,other than ‘/bin/sh’,use the exec form passing in the desired shell. For example,RUN [“/bin/bash”,“-c”,“echo hello”]

因此,只需更改命令即可使用exec表单并显式使用Bash shell:

RUN [ "/bin/bash","-c","mkdir -p /opt/seagull/{diameter-env,xcap-env}/logs" ]
原文链接:https://www.f2er.com/bash/383980.html

猜你在找的Bash相关文章