Note: Sophos does not provide an official Docker image for Sophos Antivirus for Linux. Sophos is designed to be installed directly on the host system.
For Linux systems, Sophos recommends direct installation:
.deb or .rpm packageSee Sophos Antivirus Setup for installation instructions.
If you need containerized antivirus scanning, consider using the official ClamAV Docker image:
# Pull the official ClamAV image
docker pull clamav/clamav:latest
# Run ClamAV scan on a directory
docker run --rm -v /path/to/scan:/tmp/scan:ro clamav/clamav:latest clamscan -r /tmp/scan
See ClamAV Docker Setup for more details.