The content of the written Dockerfile is: FROM python:3.6.8 RUN pip install --upgrade pip WORKDIR /code ADD ./code RUN pip install -r requirements.txt ENTRYPOINT ["pytest"] When executing the image creation to RUN pip install --upgrade pip, it reports /bin/sh: pip: command not found, and it is found that pip cannot be found: It is found that the called image cannot find the pip command. Here is my solution: I directly deleted the image I originally called, and then rebuilt it, and downloaded the image again. At this time, I can docker rmi -f python:3.6.8 docker build -t python_pytest:v1 . I also checked some information online. Most of the suggestions were to install pip in the image or write the installation command in the dockerfile. I tried both of them and found that there were still other pitfalls. Finally, I found that directly deleting the image and re-downloading it was the fastest solution. I hope it can help everyone. This is the end of this article about how to solve the problem of /bin/sh: pip: command not found during dockerfile build. For more information about dockerfile build reporting /bin/sh, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to use CSS attribute selectors to splice HTML DNA
>>: JavaScript imitates Jingdong magnifying glass special effects
Table of contents 1. Resource files 2. Installati...
Download address: https://dev.mysql.com/downloads...
Table of contents 1. First look at COUNT 2. The d...
1. Install and start nginx # Install nginx sudo a...
1. Docker Network Mode When docker run creates a ...
Table of contents Separation effect Command line ...
Vue router transitions are a quick and easy way t...
I will use three days to complete the static page...
This article mainly introduces the implementation...
After I set up the PHP development environment on...
This article example shares the specific code for...
Table of contents Preface text 1. Panel 2. Huaron...
RGBA is a CSS color that can set color value and ...
Table of contents 1. What is Ts 2. Basic Grammar ...
1. CSS writing format 1. Inline styles You can wr...