diff --git a/lmod/Dockerfile b/lmod/Dockerfile index ed6f4cff0c6293e6d8c10d675fe3c72fde8065ab..2ab313934327c7ea21bbc44d13ce34de591b96f0 100644 --- a/lmod/Dockerfile +++ b/lmod/Dockerfile @@ -24,8 +24,8 @@ RUN wget -O /opt/apps/install/curlftpfs-0.9.2.tar.gz https://sourceforge.net/pro /bin/bash /opt/apps/install/curlftpfs/install_curlftpfs_0.9.2.sh # Download and install davfs2 -RUN wget -O /tmp/davfs2-1.7.0-7.el9.x86_64.rpm https://www.rpmfind.net/linux/epel/testing/9/Everything/x86_64/Packages/d/davfs2-1.7.0-7.el9.x86_64.rpm && \ - rpm -ivh /tmp/davfs2-1.7.0-7.el9.x86_64.rpm +COPY --chown=root:root ./install_files/davfs2-1.7.0-7.el9.x86_64.rpm /tmp/davfs2-1.7.0-7.el9.x86_64.rpm +RUN rpm -ivh /tmp/davfs2-1.7.0-7.el9.x86_64.rpm # Download and install Node.js 20.x RUN wget -O /tmp/nodejs.sh https://rpm.nodesource.com/setup_20.x && bash /tmp/nodejs.sh && dnf install nodejs -y diff --git a/lmod/install_files/davfs2-1.7.0-7.el9.x86_64.rpm b/lmod/install_files/davfs2-1.7.0-7.el9.x86_64.rpm new file mode 100644 index 0000000000000000000000000000000000000000..fe13207bc6cce7e6dbad68dbb71b2b58721133db Binary files /dev/null and b/lmod/install_files/davfs2-1.7.0-7.el9.x86_64.rpm differ