我在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:
原文链接:https://www.f2er.com/bash/383980.htmlRUN (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" ]