测试开发技术网站
博客
设计
设计
开发
Python
测试
unittest
运维
Linux基础应用
CI/CD
CI/CD
数据库
数据库
云计算
云计算
云原生
云原生
爬虫
爬虫
数据分析
数据分析
人工智能
人工智能
登录
注册
Docker----Dockerfile 中构建 Python 应用镜像无法使用 pip 安装第三方库
收藏本文
作者:redrose2100 类别: 日期:2022-08-09 07:27:34 阅读:766 次 消耗积分:0 分
![](https://redrose2100.oss-cn-hangzhou.aliyuncs.com/img/06c9f19c-9517-11ee-b9ec-0242ac110004.png) [TOC] # 一、问题现象 在 dockerfile 中使用如下命令安装 python 的第三方库 ```bash RUN pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com ``` 出现如下错误,但是如果手工直接在虚拟机中 ping mirrors.aliyun.com 是可以 ping 通的 ```bash Step 7/9 : RUN pip install -r requirements.txt -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com ---> Running in 5fbc19a84453 Looking in indexes: http://mirrors.aliyun.com/pypi/simple/ [91mWARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('
: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /pypi/simple/async-timeout/ [0m[91mWARNING: Retrying (Retry(total=3, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('
: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /pypi/simple/async-timeout/ [0m[91mWARNING: Retrying (Retry(total=2, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('
: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /pypi/simple/async-timeout/ [0m[91mWARNING: Retrying (Retry(total=1, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('
: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /pypi/simple/async-timeout/ [0m[91mWARNING: Retrying (Retry(total=0, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('
: Failed to establish a new connection: [Errno -3] Temporary failure in name resolution')': /pypi/simple/async-timeout/ [0m[91mERROR: Could not find a version that satisfies the requirement async-timeout==4.0.2 (from versions: none) ``` # 二、问题原因 原因是 docker 的配置文件 /etc/docker/daemon.json 中没有配置DNS # 三、解决办法 编辑 /etc/docker/daemon.json 文件 vi /etc/docker/daemon.json,然后其中增加如下内容: ```bash "dns": ["114.114.114.114", "8.8.8.8"] ``` 如: ![](http://blog.redrose2100.com/static/upload/20220809_072548.png) 然后重启 docker 服务 ```bash systemctl restart docker ``` 至此就解决了上述问题
始终坚持开源开放共享精神,同时感谢您的充电鼓励和支持!
版权所有,转载本站文章请注明出处:redrose2100, http://blog.redrose2100.com/article/336
上一篇:
Gitlab----在 Linux 上安装Gitlab
下一篇:
Harbor----使用 Harbor 安装包安装部署 Harbor
搜索
个人成就
出版书籍
《Pytest企业级应用实战》
测试开发技术全栈公众号
测试开发技术全栈公众号
DevOps技术交流微信群
加微信邀请进群
常用网站链接
开源软件洞察
云原生技术栈全景图
Python语言官方文档
Golang官方文档
Docker官方文档
Jenkins中文用户手册
Scrapy官方文档
VUE官方文档
Harbor官方文档
openQA官方文档
云原生开源社区
开源中国
Kubernetes中文文档
Markdown语法官方教程
Kubernetes中文社区
Kubersphere官方文档
BootStrap中文网站
JavaScript中文网
NumPy官方文档
Pandas官方文档
GitLink确实开源网站
数据库排名网站
编程语言排名网站
SEO综合查询网站
数学加减法练习自动生成网站
Kickstart Generator
文章分类
最新文章
最多阅读
特别推荐
×
Close
登录
注册
找回密码
登录邮箱:
登录密码:
图片验证码:
注册邮箱:
注册密码:
邮箱验证码:
发送邮件
注册邮箱:
新的密码:
邮箱验证码:
发送邮件