aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2019-04-18 19:48:42 +0200
committerGravatar Johannes Christ <[email protected]>2019-04-18 19:48:42 +0200
commita5dee7db9a75bb50035ee3b3246cea6aa1cf5986 (patch)
tree29d598cb99629cd6bc69f5d3a90f16b58edabb45
parentRestructure viewsets to submodules. (diff)
Specify hadolint arguments on the command line.
-rw-r--r--.hadolint.yaml4
-rw-r--r--azure-pipelines.yml2
2 files changed, 1 insertions, 5 deletions
diff --git a/.hadolint.yaml b/.hadolint.yaml
deleted file mode 100644
index c3c3449b..00000000
--- a/.hadolint.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-ignored:
- - DL3008 # Ignore suggestion for pinned versions in `apt-get`...
- - DL3013 # ... and `pip`.
- - DL3018 # ... and `apk`.
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index 35fb9f82..398b4797 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -19,7 +19,7 @@ jobs:
- script: docker run -v $(pwd):/app:ro --rm ruby:alpine /bin/ash -c "gem install mdl && cd /app && mdl"
displayName: run markdownlint
- - script: docker run -i hadolint/hadolint hadolint --ignore DL3008 --ignore DL3018 --ignore DL3019 - < docker/app/Dockerfile
+ - script: docker run -i hadolint/hadolint hadolint --ignore DL3008 --ignore DL3013 --ignore DL3018 --ignore DL3019 - < docker/app/Dockerfile
displayName: run hadolint
- job: lint_python