Updated AppendLayer to include author
This commit is contained in:
parent
31d02ad5db
commit
e7b8912ec6
|
|
@ -44,8 +44,8 @@ func InitializeSourceImage(srcImg string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
// AppendLayer appends a layer onto the base image
|
// AppendLayer appends a layer onto the base image
|
||||||
func AppendLayer(contents []byte) error {
|
func AppendLayer(contents []byte, author string) error {
|
||||||
return sourceImage.AppendLayer(contents)
|
return sourceImage.AppendLayer(contents, author)
|
||||||
}
|
}
|
||||||
|
|
||||||
// PushImage pushes the final image
|
// PushImage pushes the final image
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue