File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ RUN chmod +x /blobfuse-proxy/init.sh && \
29
29
chmod +x /blobfuse-proxy/blobfuse-proxy
30
30
31
31
# packages that are only needed by aznfs: procps conntrack iptables bind9-host iproute2 bash netcat sysvinit-utils.
32
- RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates uuid-dev util-linux mount udev wget e2fsprogs nfs-common netbase procps conntrack iptables bind9-host iproute2 bash netcat sysvinit-utils curl
32
+ RUN apt update && apt upgrade -y && apt-mark unhold libcap2 && clean-install ca-certificates uuid-dev util-linux mount udev wget e2fsprogs nfs-common netbase procps conntrack iptables bind9-host iproute2 bash netcat sysvinit-utils
33
33
34
34
# install aznfs
35
35
RUN if [ "$ARCH" = "amd64" ] ; then \
@@ -39,14 +39,14 @@ else \
39
39
RUN tar xvzf aznfs.tar.gz -C / && rm aznfs.tar.gz
40
40
41
41
# install azcopy
42
- ARG azcopyURL=https://aka.ms/downloadazcopy-v10-linux
42
+ ARG azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.21.2-20231106/azcopy_linux_amd64_10.21.2.tar.gz
43
43
RUN if [ "$ARCH" == "arm64" ] ; then \
44
- azcopyURL=${azcopyURL}"-arm64" ; fi
45
- RUN curl -sL ${azcopyURL} | tar -xz && \
44
+ azcopyURL=https://azcopyvnext.azureedge.net/releases/release-10.21.2-20231106/azcopy_linux_arm64_10.21.2.tar.gz; fi
45
+ RUN wget -O azcopy.tar.gz ${azcopyURL} && \
46
+ tar xvzf azcopy.tar.gz -C . && rm azcopy.tar.gz && \
46
47
mv ./azcopy_linux_$ARCH_*/azcopy /usr/local/bin/azcopy && \
47
48
rm -rf ./azcopy_linux_$ARCH_*
48
49
RUN chmod +x /usr/local/bin/azcopy
49
- RUN apt remove curl -y
50
50
51
51
RUN if [ "$ARCH" = "amd64" ] ; then \
52
52
clean-install libcurl4-gnutls-dev && \
You can’t perform that action at this time.
0 commit comments