├── .gitignore ├── .npmcheckrc ├── Dockerfile ├── LICENSE ├── README.md ├── freshclam.conf ├── handler.js ├── handler.test.js ├── package.json └── serverless.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmcheckrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/.npmcheckrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/README.md -------------------------------------------------------------------------------- /freshclam.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/freshclam.conf -------------------------------------------------------------------------------- /handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/handler.js -------------------------------------------------------------------------------- /handler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/handler.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/package.json -------------------------------------------------------------------------------- /serverless.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sutt0n/serverless-clamav-lambda-layer/HEAD/serverless.yml --------------------------------------------------------------------------------