Skip to content

Commit 61b17b2

Browse files
author
Will Fleming
committed
Add a Makefile
pretty standard for our engines by now.
1 parent 8f1dc04 commit 61b17b2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.PHONY: image test
2+
3+
IMAGE_NAME ?= codeclimate/codeclimate-rubocop
4+
5+
image:
6+
docker build --rm -t $(IMAGE_NAME) .
7+
8+
test: image
9+
docker run --rm $(IMAGE_NAME) sh -c "cd /usr/src/app && bundle exec rake"

0 commit comments

Comments
 (0)