Skip to content

Commit

Permalink
add makefile target to build docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
itaysk authored and simar7 committed May 14, 2020
1 parent a207a16 commit 2187ecb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ test:
clean:
rm -rf dist || true

imageName ?= tracee
.PHONY: docker
docker:
docker build -t $(imageName) .

.PHONY: release
# release by default will not publish. run with `publish=1` to publish
goreleaserFlags = --skip-publish --snapshot
Expand Down

0 comments on commit 2187ecb

Please sign in to comment.