dockerfile编写的image启动后找不到启动脚本。
dockerfile"># add
add entrypoint.sh /
RUN chmod +x /entrypoint.sh
# 打印下是否已经add或者copy成功
RUN ls -lh /
如果报错:no such file or directory
可能是使用了win的换行符,linux系统不识别导致。
如果在idea里,可以在右下角单击切换。
如果在notepad++里,可以在右下角双击切换。
dockerfile编写的image启动后找不到启动脚本。
dockerfile"># add
add entrypoint.sh /
RUN chmod +x /entrypoint.sh
# 打印下是否已经add或者copy成功
RUN ls -lh /
如果报错:no such file or directory
可能是使用了win的换行符,linux系统不识别导致。
如果在idea里,可以在右下角单击切换。
如果在notepad++里,可以在右下角双击切换。