mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9be1ec60d4
Signed-off-by: Tibor Vass <tibor@docker.com>
9 lines
184 B
Go
9 lines
184 B
Go
package builder
|
|
|
|
import "github.com/docker/docker/runconfig"
|
|
|
|
// Image represents a Docker image used by the builder.
|
|
type Image interface {
|
|
ID() string
|
|
Config() *runconfig.Config
|
|
}
|