mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-10-10 20:26:16 +00:00
add sophos and mcafee scan backend
This commit is contained in:
13
MalwareMultiScan.Backends/Dockerfiles/Sophos.Dockerfile
Normal file
13
MalwareMultiScan.Backends/Dockerfiles/Sophos.Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM mindcollapse/malware-multi-scan-worker:latest
|
||||
|
||||
RUN apt-get update && apt-get install wget -y
|
||||
|
||||
ARG SOPHOS_URL=https://api-cloudstation-eu-central-1.prod.hydra.sophos.com/api/download/a9f5bc85ee950653ef0775ca1402120c/SophosInstall.sh
|
||||
ENV SOPHOS_URL=$SOPHOS_URL
|
||||
|
||||
RUN wget -q $SOPHOS_URL -O /tmp/SophosInstall.sh && \
|
||||
chmod +x /tmp/SophosInstall.sh && \
|
||||
/tmp/SophosInstall.sh --automatic --acceptlicence || exit 0
|
||||
|
||||
ENV BackendType=Sophos
|
||||
|
Reference in New Issue
Block a user