Skip to content

Instantly share code, notes, and snippets.

@qudongfang
Created January 31, 2024 11:04
Show Gist options
  • Save qudongfang/ae9db604635110265e100a48118ac7ef to your computer and use it in GitHub Desktop.
Save qudongfang/ae9db604635110265e100a48118ac7ef to your computer and use it in GitHub Desktop.
how to build istio-proxy images locally
RELEASE=1.19
git clone https://github.com/istio/proxy.git
cd proxy
git checkout ${RELEASE}
# make your changes to the source code
docker run -it -w /work -v $PWD:/work gcr.io/istio-testing/build-tools-proxy:${RELEASE} bash
make build_envoy
# then you can create a customized docker image, refer to https://gist.github.com/qudongfang/ada7e66bf84f94595341687f7becc692
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment