2017-06-09 12 views
0

requirements.txtファイルを含むドッカー画像をビルドしようとしましたが、ビルド中に依存関係をインストールできませんでした。 tiangolo/uwsgi-nginxの-フラスコから :ここドッカー画像を構築中にrequirements.txtファイルを実行できません

は、ドッキングウィンドウのファイルの内容である

> # copy over our requirements.txt file COPY requirements.txt /tmp/ 
> 
> # upgrade pip and install required python packages RUN apt-get update pip install -U pip RUN apt-get update pip install -r 
> /tmp/requirements.txt 
> 
> # copy over our app code COPY ./app /app 

をフラスコrequirements.txt:

Flask==0.12.2 
pyfiglet==0.7.5 

ここには来ているエラーです。

Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'NewConnectionError('<pip._vendor.requests.packages.urllib3.connection.VerifiedHTTPSConnection object at 0x7fb04e93a950>: Failed to establish a new connection: [Errno -2] Name or service not known',)': /simple/pip/ 

しかし、私がpip install requirements.txtという要件を実行している場合、その動作良い。

何か間違っていますか?誰でも私を助けてくれますか?

答えて

0

ファイアウォールが接続をブロックしていました。今はうまくいく。

関連する問題