add a Makefile

This commit is contained in:
Gordon Young 2020-09-09 20:05:52 -07:00
parent 99dfbc00ed
commit ade9c655b2

9
Makefile Normal file
View File

@ -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)