summaryrefslogtreecommitdiff
path: root/build/instructions.go
diff options
context:
space:
mode:
Diffstat (limited to 'build/instructions.go')
-rw-r--r--build/instructions.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/build/instructions.go b/build/instructions.go
index d6cc1c3..4e48e88 100644
--- a/build/instructions.go
+++ b/build/instructions.go
@@ -173,19 +173,6 @@ func (user User) Compile() []string {
return []string{quote(user.Name)}
}
-// Volume is a concrete build instruction for defining a volume mount point
-// within the container.
-//
-type Volume struct {
- Path string // volume/mount path
-}
-
-// Compile returns the quoted volume path.
-//
-func (vol Volume) Compile() []string {
- return []string{quote(vol.Path)}
-}
-
// WorkingDirectory is a build instruction for defining the working directory
// for future command and entrypoint instructions.
//