From f406a873db7a346314bd1b45306843899bbe9cbd Mon Sep 17 00:00:00 2001 From: David Mays Date: Mon, 17 Jun 2024 16:22:31 +0100 Subject: [PATCH] Avoid the ClamAV Mirror Rate Limit --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 452f29bf..2b5c4280 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,7 +41,7 @@ RUN apt update && apt install -y \ wget \ && \ rm -rf /var/cache/apt/archives && \ - wget https://www.clamav.net/downloads/production/clamav-${clamav_version}.tar.gz && \ + wget https://github.com/Cisco-Talos/clamav/releases/download/clamav-${clamav_version}/clamav-${clamav_version}.tar.gz && \ tar -zxf clamav-${clamav_version}.tar.gz -C /src --strip-components=1 && \ # Using rustup to install Rust rather than rust:1.62.1-bullseye, because there is no rust:1.62.1-bullseye image for ppc64le at this time. curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \