Last active
August 29, 2024 22:18
-
-
Save qudongfang/ada7e66bf84f94595341687f7becc692 to your computer and use it in GitHub Desktop.
istio-proxy docker image with customised envoy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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} |
Author
qudongfang
commented
Aug 7, 2024
- use the upstream istio-proxy image as base image
- override the envoy binary
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment