Add canonical import comment
Signed-off-by: Daniel Nephin <dnephin@docker.com> rewritten from github.com/moby/moby 4f0d95fa6ee7f865597c03b9e63702cdcb0f7067docker-18.09
parent
1f5fd4bb26
commit
a3b7488b81
|
@ -1,5 +1,5 @@
|
|||
// Package command contains the set of Dockerfile commands.
|
||||
package command
|
||||
package command // import "github.com/docker/docker/builder/dockerfile/command"
|
||||
|
||||
// Define constants for the command strings
|
||||
const (
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import (
|
||||
"errors"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// +build !windows
|
||||
|
||||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import "fmt"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import "strings"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package instructions
|
||||
package instructions // import "github.com/docker/docker/builder/dockerfile/instructions"
|
||||
|
||||
import "testing"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package parser
|
||||
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package parser
|
||||
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
|
||||
|
||||
// line parsers are dispatch calls that parse a single unit of text into a
|
||||
// Node object which contains the whole statement. Dockerfiles have varied
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package parser
|
||||
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
// Package parser implements a parser and parse tree dumper for Dockerfiles.
|
||||
package parser
|
||||
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package parser
|
||||
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package parser
|
||||
package parser // import "github.com/docker/docker/builder/dockerfile/parser"
|
||||
|
||||
import (
|
||||
"strings"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
// +build !windows
|
||||
|
||||
package shell
|
||||
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
|
||||
|
||||
// EqualEnvKeys compare two strings and returns true if they are equal. On
|
||||
// Windows this comparison is case insensitive.
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package shell
|
||||
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
|
||||
|
||||
import "strings"
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package shell
|
||||
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
package shell
|
||||
package shell // import "github.com/docker/docker/builder/dockerfile/shell"
|
||||
|
||||
import (
|
||||
"bufio"
|
||||
|
|
Loading…
Reference in New Issue