lint dockerfiles with hadolint
This commit is contained in:
parent
f3ec613a5a
commit
9711bc096c
|
@ -0,0 +1,27 @@
|
||||||
|
name: Dockerfile Lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
hadolint:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
dockerfile:
|
||||||
|
- docker/nginx/Dockerfile
|
||||||
|
- docker/sia/Dockerfile
|
||||||
|
- packages/dashboard/Dockerfile
|
||||||
|
- packages/dnslink-api/Dockerfile
|
||||||
|
- packages/handshake-api/Dockerfile
|
||||||
|
- packages/health-check/Dockerfile
|
||||||
|
- packages/website/Dockerfile
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- uses: hadolint/hadolint-action@v2.0.0
|
||||||
|
with:
|
||||||
|
dockerfile: ${{ matrix.dockerfile }}
|
Reference in New Issue