hadolint: override severity of a warning
This commit is contained in:
parent
4c657c4cc2
commit
4a42222019
68
.drone.yml
Normal file
68
.drone.yml
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
type: docker
|
||||||
|
name: testing
|
||||||
|
|
||||||
|
platform:
|
||||||
|
os: linux
|
||||||
|
arch: amd64
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: hadolint
|
||||||
|
pull: always
|
||||||
|
image: ghcr.io/hadolint/hadolint:v2.12.0-alpine
|
||||||
|
commands:
|
||||||
|
- hadolint --version
|
||||||
|
- hadolint Containerfile
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/heads/development
|
||||||
|
- refs/heads/feature-**
|
||||||
|
- refs/pull/**
|
||||||
|
- refs/tags/**
|
||||||
|
event:
|
||||||
|
exclude: [cron]
|
||||||
|
|
||||||
|
- name: kaniko-build
|
||||||
|
pull: always
|
||||||
|
image: docker.io/immawanderer/drone-kaniko:linux-amd64
|
||||||
|
settings:
|
||||||
|
dockerfile: Containerfile
|
||||||
|
context: .
|
||||||
|
args:
|
||||||
|
- BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")"
|
||||||
|
- VCS_REF=${DRONE_COMMIT_SHA:0:7}
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/heads/feature-**
|
||||||
|
- refs/pull/**
|
||||||
|
- refs/tags/**
|
||||||
|
event:
|
||||||
|
exclude: [cron]
|
||||||
|
|
||||||
|
- name: kaniko-publish
|
||||||
|
pull: always
|
||||||
|
image: docker.io/immawanderer/drone-kaniko:linux-amd64
|
||||||
|
settings:
|
||||||
|
dockerfile: Containerfile
|
||||||
|
context: .
|
||||||
|
args:
|
||||||
|
- BUILD_DATE="$(date -u +"%Y-%m-%dT%H:%M:%SZ")"
|
||||||
|
- VCS_REF=${DRONE_COMMIT_SHA:0:7}
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
|
- linux-amd64
|
||||||
|
- ${DRONE_COMMIT_SHA:0:8}
|
||||||
|
repo: immawanderer/${DRONE_REPO_NAME}
|
||||||
|
username: immawanderer
|
||||||
|
password:
|
||||||
|
from_secret: dh_token
|
||||||
|
when:
|
||||||
|
ref:
|
||||||
|
- refs/heads/development
|
||||||
|
event:
|
||||||
|
exclude: [pull_request, tag]
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event: [push, pull_request, cron, tag]
|
||||||
|
...
|
@ -1,2 +1,9 @@
|
|||||||
---
|
---
|
||||||
ignored:
|
ignored:
|
||||||
|
|
||||||
|
failure-threshold: warning
|
||||||
|
|
||||||
|
override:
|
||||||
|
info:
|
||||||
|
# DL3018 warning: Pin versions in apk add. Instead of `apk add <package>` use `apk add <package>=<version>`
|
||||||
|
- DL3018
|
||||||
|
@ -5,6 +5,8 @@ repos:
|
|||||||
rev: v4.2.0
|
rev: v4.2.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: check-merge-conflict
|
- id: check-merge-conflict
|
||||||
|
- id: check-yaml
|
||||||
|
exclude: .drone.yml
|
||||||
- repo: https://git.dotya.ml/wanderer/hadolint-pre-commit
|
- repo: https://git.dotya.ml/wanderer/hadolint-pre-commit
|
||||||
rev: v0.0.1
|
rev: v0.0.1
|
||||||
hooks:
|
hooks:
|
||||||
|
Loading…
Reference in New Issue
Block a user