码迷,mamicode.com
首页 > 其他好文 > 详细

Dockerfile里pip.conf报错ConfigParser.MissingSectionHeaderError: File contains no section headers.

时间:2020-03-26 12:07:48      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:missing   erer   header   nta   mis   index   识别   code   col   

Dockerfile的部分内容如下:

RUN mkdir /root/.pip && echo -e "[global]\nindex-url = https://pypi.tuna.tsinghua.edu.cn/simple" > /root/.pip/pip.conf
RUN pip install PyCryptodome

目测是没有问题,可是docker build的时候就报错:

ConfigParser.MissingSectionHeaderError: File contains no section headers.

惊讶,然后尝试打印pip.conf的内容:

-e [global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple

发现-e竟然进入到文件内容里,诡异。

最后发现去掉-e就可以,而且Dockerfile的echo不加-e参数也可以识别转义字符。

Dockerfile里pip.conf报错ConfigParser.MissingSectionHeaderError: File contains no section headers.

标签:missing   erer   header   nta   mis   index   识别   code   col   

原文地址:https://www.cnblogs.com/pcat/p/12573332.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!