Signed-off-by: Daniel Nephin <dnephin@docker.com> Upstream-commit: 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067 Component: engine
10 lines
246 B
Go
10 lines
246 B
Go
// +build !windows
|
|
|
|
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
|
|
|
import "fmt"
|
|
|
|
func errNotJSON(command, _ string) error {
|
|
return fmt.Errorf("%s requires the arguments to be in JSON form", command)
|
|
}
|