Add a makefile for automating docker image building and pushing

This commit is contained in:
Néstor Salceda 2018-10-25 17:39:12 +02:00
parent 43126362c3
commit 48d01203ef

View File

@ -0,0 +1,7 @@
all: build push
build:
docker build -t sysdig/capturer .
push:
docker push sysdig/capturer