mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
907407d0b2
Signed-off-by: David Calavera <david.calavera@gmail.com>
9 lines
194 B
Go
9 lines
194 B
Go
package builder
|
|
|
|
import "github.com/docker/engine-api/types/container"
|
|
|
|
// Image represents a Docker image used by the builder.
|
|
type Image interface {
|
|
ID() string
|
|
Config() *container.Config
|
|
}
|