We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e4a89e commit 8da2913Copy full SHA for 8da2913
.github/workflows/docker-image.yml
@@ -36,7 +36,7 @@ jobs:
36
password: ${{ secrets.DOCKERHUB_TOKEN }}
37
38
- name: Lint Dockerfile
39
- run: docker run --rm -i hadolint/hadolint < ./Mwh.Sample.Web/Dockerfile
+ run: docker run --rm -i hadolint/hadolint --ignore DL3008 < ./Mwh.Sample.Web/Dockerfile
40
41
- name: Cache Docker layers
42
id: docker-cache
.hadolint.yaml
@@ -0,0 +1,2 @@
1
+ignored:
2
+ - DL3008 # Pin versions in apt get install - we prefer latest for security updates
0 commit comments