Merge pull request #819 from github/fixDoc

adding rules
This commit is contained in:
Lukas Gravley 2020-10-08 09:29:20 -05:00 committed by GitHub
commit 2bcd235132
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -315,7 +315,13 @@ analyzer:
### Hadolint disable single line ### Hadolint disable single line
- There is currently **No** way to disable rules inline of the file(s) ```dockerfile
# hadolint ignore=DL3006
FROM ubuntu
# hadolint ignore=DL3003,SC1035
RUN cd /tmp && echo "hello!"
```
### Hadolint disable code block ### Hadolint disable code block