我在一些dockerfiles中看到了这个,这是什么意思?
CMD ["phpcs"]
CMD ["phpcbf"]
没有入口点。
答案 0 :(得分:0)
CMD不需要来自documentation:
的入口点CMD指令有三种形式:
CMD ["executable","param1","param2"] (exec form, this is the preferred form) CMD ["param1","param2"] (as default parameters to ENTRYPOINT) CMD command param1 param2 (shell form)
基本上,如果省略可执行参数,则使用入口点。在这些情况下,它会在没有参数的情况下运行phpcs
和phpcbf
。