-
关于dockerfile build过程中报binsh: pip: command not found的解决方法
写好的dockerfile的内容是:FROM python:3.6.8RUN pip install --upgrade pipWORKDIR codeADD . codeRUN pip install -r requirements
写好的dockerfile的内容是:FROM python:3.6.8RUN pip install --upgrade pipWORKDIR codeADD . codeRUN pip install -r requirements