We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f1dc04 commit 61b17b2Copy full SHA for 61b17b2
Makefile
@@ -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