Adding note on where to insert ENV calls for proxy config

Fixes #5386
This commit is contained in:
John Mulhausen 2017-12-15 16:22:43 -08:00 committed by GitHub
parent afb43e8816
commit c8eeebcd0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -101,6 +101,8 @@ CMD ["python", "app.py"]
> ENV http_proxy host:port
> ENV https_proxy host:port
> ```
>
> Add these lines before the call to `pip` so that the installation succeeds.
This `Dockerfile` refers to a couple of files we haven't created yet, namely
`app.py` and `requirements.txt`. Let's create those next.