我想在我的图像中添加shell
或bash
执行安装命令。
我已将 VM 上的 复制/bin/bash
到我的图像上Dockerfile
:
COPY /bin/bash /bin/
但是当我执行 docker 命令时:
docker run -it --entrypoint "/bin/bash" <my_image>
然后我收到以下错误:
/bin/bash: error while loading shared libraries: libtinfo.so.5: cannot open shared object file: No such file or directory
谢谢你的帮助