Lint dockerfiles and add CI pipeline for linting #67

Merged
mwalbeck merged 9 commits from linting into master 2021-02-03 14:52:14 +00:00
1 changed files with 18 additions and 0 deletions
Showing only changes of commit a1ef3d4359 - Show all commits

View File

@ -1,3 +1,21 @@
---
kind: pipeline
type: docker
name: lint
steps:
- name: Lint Dockerfiles
image: hadolint/hadolint
commands:
- hadolint 1.6/Dockerfile
- hadolint 1.6/Dockerfile.prod
- hadolint 1.7/Dockerfile
- hadolint 1.7/Dockerfile.prod
trigger:
event:
- pull_request
---
kind: pipeline
type: docker