代码之家  ›  专栏  ›  技术社区  ›  Siyu Zeeshan Akhter

dockerfile运行合并pip命令

  •  -1
  • Siyu Zeeshan Akhter  · 技术社区  · 6 年前

    我有一个像这样的旧码头文件

    FROM ubuntu:16.04
    ENV VISUAL=vim
    ENV EDITOR=$VISUAL
    ENV TERM=xterm
    ENV TERMINFO=/etc/terminfo
    ENV PYTHONIOENCODING=utf-8
    RUN apt-get --yes update && apt-get --yes upgrade && apt-get --yes install python \
        python-dev \
        python-pip
    <...lots of other apt-get install...>
    RUN pip install --upgrade pip
    RUN pip install -r requirements.txt
    <...other staffs>
    

    它工作得很好,但我想通过减少图层来减小图像的大小。所以我合并了最后两行

    RUN pip install --upgrade pip && \
     pip install -r requirements.txt
    

    但是构建失败了…

    Step 15/45 : RUN pip install --upgrade pip &&  pip install -r requirements.txt
     ---> Running in b96971e60263
    Collecting pip
      Downloading https://files.pythonhosted.org/packages/c2/d7/90f34cb0d83a6c5631cf71dfe64cc1054598c843a92b400e55675cc2ac37/pip-18.1-py2.py3-none-any.whl (1.3MB)
    Installing collected packages: pip
      Found existing installation: pip 8.1.1
        Not uninstalling pip at /usr/lib/python2.7/dist-packages, outside environment /usr
    Successfully installed pip-18.1
    Traceback (most recent call last):
      File "/usr/bin/pip", line 9, in <module>
        from pip import main
    ImportError: cannot import name main
    

    合并这两行时我错过了什么?

    1 回复  |  直到 6 年前
        1
  •  1
  •   jwodder    6 年前

    假设:在 pip install --upgrade pip , the pip 命令运行是 /usr/bin/pip 以及当它升级时 管道 ,它创建了一个新的 匹普 可执行的 /usr/local/bin/pip . 这个新的可执行文件是 pip install -r requirements.txt 应该是跑的,但当你把它们放在一个 RUN 命令并因此在单个shell实例中运行它们,shell对命令位置的缓存开始,因此第二个 匹普 在里面 pip ... && pip ... 最后运行的位置与第一个相同,但由于新旧版本之间PIP内部的变化而失败。你可以强迫壳打开 匹普 插入的位置 hash -d pip 在单曲中间 运行 命令:

    RUN pip install --upgrade pip && \
     hash -d pip && \
     pip install -r requirements.txt