Skip to content

Commit 98181db

Browse files
committed
Add Makefile
1 parent b26bc6d commit 98181db

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.PHONY: all image test
2+
3+
IMAGE_NAME=codeclimate/codeclimate-duplication
4+
5+
all: image test
6+
7+
image:
8+
docker build -t $(IMAGE_NAME) .
9+
10+
test: image
11+
docker run --rm $(IMAGE_NAME) bundle exec rake

0 commit comments

Comments
 (0)