Atom syntax highlighting for Dockerfiles.
Install the package language-docker
in Atom (Preferences->Packages) or Atom's package manager from a shell:
$ apm install language-docker
language-docker supports most Dockerfile syntax features, as well as .dockerignore files.
Highlighting based on wildcards is not supported in Atom. You can use package file-types with this in you config.cson
to enable it.
"file-types": {
"^Dockerfile\\..*$": "source.dockerfile"
}