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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 

16 lines
385 B

MAKEFLAGS += --silent
.PHONY: *
REPOSITORY=fedy95/baseimage:yamllint
TAG=latest
build_yamllint:
docker build -t ${REPOSITORY}-${TAG} image -f image/Dockerfile
lint: build_yamllint
@docker run --rm $$(tty -s && echo "-it" || echo) -v $(PWD):/data ${REPOSITORY}-${TAG} .
lint_help: build_yamllint
docker run --rm -v $(pwd):/data ${REPOSITORY}-${TAG} --help
.DEFAULT_GOAL := lint