RUN 指令:用于指定 docker build 过程中要运行的命令. 语法格式: RUN <command> 或 RUN ["<executeable>","<param1>","param2",...] RUN ["/bin/bash","-c","<executeable>","param1","para…
add by zhj: CMD和ENTRYPOINT的差异很小,可以认为完全可以相互代替.两者都支持shell模式和exec模式, shell模式:跟你在shell下执行命令的格式一样,简单方便,但是你的可执行程序不是1号进程,即不能接受Linux信号, 而docker stop等使用的就是Linux信号,1号进程是shell进程.docker中有介绍 The shell form prevents any CMD or run command line arguments from bein…