diff --git a/data/Dockerfiles/clamd/Dockerfile b/data/Dockerfiles/clamd/Dockerfile index e14858f4..41a02e19 100644 --- a/data/Dockerfiles/clamd/Dockerfile +++ b/data/Dockerfiles/clamd/Dockerfile @@ -2,7 +2,7 @@ FROM debian:buster-slim LABEL maintainer "André Peters " -ARG CLAMAV=0.103.4 +ARG CLAMAV=0.103.5 RUN apt-get update && apt-get install -y --no-install-recommends \ ca-certificates \ zlib1g-dev \ @@ -23,7 +23,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ dos2unix \ netcat \ && rm -rf /var/lib/apt/lists/* \ - && wget -O - https://fossies.org/linux/misc/clamav-${CLAMAV}.tar.gz | tar xfvz - \ + && wget -O - https://www.clamav.net/downloads/production/clamav-${CLAMAV}.tar.gz | tar xfvz - \ && cd clamav-${CLAMAV} \ && ./configure \ --prefix=/usr \