diff options
| author | 2019-01-12 17:22:06 +0100 | |
|---|---|---|
| committer | 2019-01-12 17:22:06 +0100 | |
| commit | 95dc2b4637478150787da725307ef5f6f45f5ce6 (patch) | |
| tree | 8f03fb9f65331cb82df2eec91307cca9de8b2d65 | |
| parent | Collect static files in Docker image. (diff) | |
Ignore dumb `hadolint` error.
| -rw-r--r-- | azure-pipelines.yml | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1c6a746a..1cb4846e 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -20,7 +20,7 @@ jobs:        - script: |            echo 'set -ex' > script.sh            echo 'for dockerfile in docker/**/**/**/Dockerfile; do' >> script.sh -          echo '  docker run -i hadolint/hadolint hadolint --ignore DL3008 --ignore DL3018 - < $dockerfile' >> script.sh +          echo '  docker run -i hadolint/hadolint hadolint --ignore DL3008 --ignore DL3018 --ignore DL3019 - < $dockerfile' >> script.sh            echo 'done' >> script.sh            sh script.sh          displayName: run hadolint  |