You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
406 B
16 lines
406 B
MAKEFLAGS += --silent
|
|
|
|
.PHONY: *
|
|
|
|
REPOSITORY=fedy95/baseimage:jsonlint
|
|
TAG=latest
|
|
|
|
build_jsonlint:
|
|
docker build -t ${REPOSITORY}-${TAG} image -f image/Dockerfile
|
|
|
|
lint: build_jsonlint
|
|
@docker run --rm $$(tty -s && echo "-it" || echo) -v $(PWD):/data ${REPOSITORY}-${TAG} -qc tests/general.json
|
|
lint_help: build_jsonlint
|
|
docker run --rm -v $(pwd):/data ${REPOSITORY}-${TAG} --help
|
|
|
|
.DEFAULT_GOAL := lint
|