当前位置:服务器 > > 正文

docker目录映射不起作用(关于dockerfile build过程中报/bin/sh: pip: command not found的解决方法)

时间:2021-10-23 10:27:28类别:服务器

docker目录映射不起作用

关于dockerfile build过程中报/bin/sh: pip: command not found的解决方法

写好的dockerfile的内容是:

  • FROM python:3.6.8
    
    RUN pip install --upgrade pip
    
    WORKDIR /code
    ADD . /code
    
    RUN pip install -r requirements.txt
    
    ENTRYPOINT ["pytest"]
    
  • 执行创建镜像到RUN pip install --upgrade pip的时候报/bin/sh: pip: command not found,发现报找不到pip:

    docker目录映射不起作用(关于dockerfile build过程中报/bin/sh: pip: command not found的解决方法)

    发现调用的镜像找不到pip命令,这里记录一下自己的解决方法:

    我是把原本调用的镜像直接删除,然后重新build,会去重新下载镜像,这时候就可以通过

  • docker rmi -f python:3.6.8
    
    docker build -t python_pytest:v1 .
    
  • 自己也去网上查了一些资料,大部分建议是去镜像里安装pip或者在dockerfile里写入安装命令,这两种个人都尝试了,发现还是有其他的坑,最后发现直接删除镜像,重新下载是最快的解决方式,希望能对大家有所帮助。

    到此这篇关于关于dockerfile build过程中报/bin/sh: pip: command not found的解决方法的文章就介绍到这了,更多相关dockerfile build报/bin/sh内容请搜索开心学习网以前的文章或继续浏览下面的相关文章希望大家以后多多支持开心学习网!

    上一篇下一篇

    猜您喜欢

    热门推荐