From c8eeebcd0de5b369c8a6aa88def15c176543b27c Mon Sep 17 00:00:00 2001 From: John Mulhausen Date: Fri, 15 Dec 2017 16:22:43 -0800 Subject: [PATCH] Adding note on where to insert ENV calls for proxy config Fixes #5386 --- get-started/part2.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/get-started/part2.md b/get-started/part2.md index 92dd4d0573..bb81b7987f 100644 --- a/get-started/part2.md +++ b/get-started/part2.md @@ -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.