: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
// CodeMirror, copyright (c) by Marijn Haverbeke and others
// Distributed under an MIT license: http://codemirror.net/LICENSE
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"), require("../../addon/mode/simple"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror", "../../addon/mode/simple"], mod);
else // Plain browser env
})(function(CodeMirror) {
// Collect all Dockerfile directives
var instructions = ["from", "maintainer", "run", "cmd", "expose", "env",
"add", "copy", "entrypoint", "volume", "user",
instructionRegex = "(" + instructions.join('|') + ")",
instructionOnlyLine = new RegExp(instructionRegex + "\\s*$", "i"),
instructionWithArguments = new RegExp(instructionRegex + "(\\s+)", "i");
CodeMirror.defineSimpleMode("dockerfile", {
// Block comment: This is a line starting with a comment
// Highlight an instruction without any arguments (for convenience)
regex: instructionOnlyLine,
// Highlight an instruction followed by arguments
regex: instructionWithArguments,
token: ["variable-2", null],
// Line comment without instruction arguments is an error
// Match everything except for the inline comment
// Fail safe return to start
CodeMirror.defineMIME("text/x-dockerfile", "dockerfile");