From 17ba65333668b4a947eb9f018b08ed07ad89b14f Mon Sep 17 00:00:00 2001 From: andyzhangx Date: Tue, 26 Dec 2023 11:20:58 +0000 Subject: [PATCH] feat: upgrade azcopy to v10.22.1 for volume clone feature --- .trivyignore | 1 - pkg/azurefileplugin/Dockerfile | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) delete mode 100644 .trivyignore diff --git a/.trivyignore b/.trivyignore deleted file mode 100644 index ac4250b0e2..0000000000 --- a/.trivyignore +++ /dev/null @@ -1 +0,0 @@ -CVE-2023-48795 diff --git a/pkg/azurefileplugin/Dockerfile b/pkg/azurefileplugin/Dockerfile index f83b18a6f1..e99bd49b14 100644 --- a/pkg/azurefileplugin/Dockerfile +++ b/pkg/azurefileplugin/Dockerfile @@ -21,9 +21,9 @@ COPY ${binary} /azurefileplugin RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates cifs-utils util-linux e2fsprogs mount udev xfsprogs nfs-common netbase wget # install azcopy -ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.21.2-20231106/azcopy_linux_amd64_10.21.2.tar.gz +ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.22.1-20231220/azcopy_linux_amd64_10.22.1.tar.gz RUN if [ "$ARCH" == "arm64" ] ; then \ - azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.21.2-20231106/azcopy_linux_arm64_10.21.2.tar.gz; fi + azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.22.1-20231220/azcopy_linux_arm64_10.22.1.tar.gz; fi RUN wget -O azcopy.tar.gz ${azcopyURL} && \ tar xvzf azcopy.tar.gz -C . && rm azcopy.tar.gz && \ mv ./azcopy_linux_$ARCH_*/azcopy /usr/local/bin/azcopy && \