From 81e1398acc136c9cc3c4728f9811ff5a1361a70e Mon Sep 17 00:00:00 2001 From: openeuler_bot Date: Fri, 15 Aug 2025 10:09:49 +0000 Subject: [PATCH] 24.03-lts-sp1 update envoy to 1.35.0 --- Cloud/envoy/1.35.0/24.03-lts-sp1/Dockerfile | 24 +++++++++++++++++++++ Cloud/envoy/meta.yml | 4 +++- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 Cloud/envoy/1.35.0/24.03-lts-sp1/Dockerfile diff --git a/Cloud/envoy/1.35.0/24.03-lts-sp1/Dockerfile b/Cloud/envoy/1.35.0/24.03-lts-sp1/Dockerfile new file mode 100644 index 00000000..9fbd5c6f --- /dev/null +++ b/Cloud/envoy/1.35.0/24.03-lts-sp1/Dockerfile @@ -0,0 +1,24 @@ +ARG BASE=openeuler/openeuler:24.03-lts-sp1 +FROM ${BASE} +ARG VERSION=1.35.0 +ARG TARGETARCH +ARG BUILDARCH + +RUN dnf update -y \ + && dnf install -y wget \ + && dnf clean all \ + && rm -rf /var/cache/dnf + +WORKDIR /usr/local/envoy + +RUN if [ "$TARGETARCH" = "amd64" ]; then \ + BUILDARCH="x86_64"; \ + elif [ "$TARGETARCH" = "arm64" ]; then \ + BUILDARCH="aarch_64"; \ + fi; \ + wget -O envoy https://github.com/envoyproxy/envoy/releases/download/v${VERSION}/envoy-${VERSION}-linux-${BUILDARCH} \ + && chmod +x envoy + +WORKDIR /usr/local/envoy + +CMD ["./envoy", "--help"] \ No newline at end of file diff --git a/Cloud/envoy/meta.yml b/Cloud/envoy/meta.yml index 6a7695f1..da63f625 100644 --- a/Cloud/envoy/meta.yml +++ b/Cloud/envoy/meta.yml @@ -1,2 +1,4 @@ 1.34.1-oe2403sp1: - path: 1.34.1/24.03-lts-sp1/Dockerfile \ No newline at end of file + path: 1.34.1/24.03-lts-sp1/Dockerfile +1.35.0-oe2403sp1: + path: 1.35.0/24.03-lts-sp1/Dockerfile \ No newline at end of file -- Gitee