File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,11 @@ RUN chmod +x /blobfuse-proxy/init.sh && \
32
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-traditional sysvinit-utils kmod
33
33
34
34
# install aznfs
35
+ ARG aznfsVer=2.0.3
35
36
RUN if [ "$ARCH" = "amd64" ] ; then \
36
- wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/2.0.1 /aznfs-2.0.1 -1.x86_64.tar.gz; \
37
+ wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer} /aznfs-${aznfsVer} -1.x86_64.tar.gz; \
37
38
else \
38
- wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/2.0.1 /aznfs-2.0.1 -1.arm64.tar.gz;fi
39
+ wget -O aznfs.tar.gz https://github.com/Azure/AZNFS-mount/releases/download/${aznfsVer} /aznfs-${aznfsVer} -1.arm64.tar.gz;fi
39
40
RUN tar xvzf aznfs.tar.gz -C / --keep-directory-symlink && rm aznfs.tar.gz
40
41
41
42
RUN if [ "$ARCH" = "amd64" ] ; then \
You can’t perform that action at this time.
0 commit comments