Define Artifact diffs layers

It also add in simpledocker a naive implementation using the container-diff binary, which is supposed to go away with a proper API implementation.
This commit is contained in:
Ettore Di Giacinto
2019-11-09 13:58:15 +01:00
parent 1131a52f97
commit 45651a3bcc
5 changed files with 117 additions and 14 deletions

View File

@@ -15,11 +15,6 @@
package compiler
type Artifact interface {
GetPath() string
SetPath(string)
}
type PackageArtifact struct {
Path string
}