dockerfile_lint
dockerfile_lint copied to clipboard
Require double quotes
CMD ['foo', '--bar']
will result in errors when running the docker image.
it should be CMD ['foo', '--bar']
.
The rules should check this.