Skip to content

Instantly share code, notes, and snippets.

@qudongfang
Last active February 1, 2024 09:40
Show Gist options
  • Save qudongfang/ada7e66bf84f94595341687f7becc692 to your computer and use it in GitHub Desktop.
Save qudongfang/ada7e66bf84f94595341687f7becc692 to your computer and use it in GitHub Desktop.
istio-proxy docker image with customised envoy
ARG RELEASE=1.19.6
ARG SIDECAR=envoy
FROM gcr.io/istio-release/proxyv2:${RELEASE}
# Install Envoy.
COPY ./${SIDECAR} /usr/local/bin/${SIDECAR}
RUN chmod 0755 /usr/local/bin/${SIDECAR}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment