diff --git a/examples/cpu/inference/python/llm/README.md b/examples/cpu/inference/python/llm/README.md index 4180ebf0d..dae1ded56 100644 --- a/examples/cpu/inference/python/llm/README.md +++ b/examples/cpu/inference/python/llm/README.md @@ -82,6 +82,10 @@ git submodule update --init --recursive # Build an image with the provided Dockerfile by compiling IntelĀ® Extension for PyTorch\* from source DOCKER_BUILDKIT=1 docker build -f examples/cpu/inference/python/llm/Dockerfile --build-arg COMPILE=ON -t ipex-llm:main . +# Working behind a corporate HTTP proxy makes everything harder, try add http/https proxy by build args +DOCKER_BUILDKIT=1 docker build -f examples/cpu/inference/python/llm/Dockerfile --build-arg COMPILE=ON \ + --build-arg http_proxy=: --build-arg https_proxy=: \ + -t ipex-llm:main . # Run the container with command below docker run --rm -it --privileged ipex-llm:main bash