Skip to content

hlvtechnologies/dockerfile-linter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

HLV Linting Image

What does it do?

How do I use this image?

In your .gitlab-ci.yml, call this image and use the tools with the appropriate arguments.

lint:
  image: registry.hlv.inside/cicd-tools/hlv-linter:latest
  stage: lint
  script:
    - yamllint /${CI_PROJECT_PATH}/*.yaml /${CI_PROJECT_PATH}/*.yml
  tags:
    - kubernetes
  only:
    - merge_requests
  allow_failure: true