diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7d0b0bd --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all: clamav + +CLAMAV := gjyoung1974/docker-malware-scan:latest + +clamav: + docker build --pull --rm -f "Dockerfile" --tag $(CLAMAV) "." + +push: + docker push $(CLAMAV)