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 0000000000000000000000000000000000000000..9fbd5c6f68f5e9333b8effcd55fb0bb55e244956 --- /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 6a7695f1e455130a2d79e0017410942ac21d4f50..da63f62529725c75477ff92b96b7ab1061e017f4 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