Document Azure usage (#812) #1161
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Dockerfile Validation | |
on: [push, workflow_dispatch] | |
jobs: | |
check-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repository | |
uses: actions/[email protected] | |
# hadolint/hadolint-action is causing issue with act: https://github.com/hadolint/hadolint/issues/823 | |
- name: Validate Dockerfile | |
run: docker run -v "$(pwd)":"/files" hadolint/hadolint:v2.12.0 hadolint /files/Dockerfile |