Updated AppendLayer to include author

This commit is contained in:
Priya Wadhwa 2018-03-01 13:10:44 -08:00
parent 31d02ad5db
commit e7b8912ec6
No known key found for this signature in database
GPG Key ID: 0D0DAFD8F7AA73AE
1 changed files with 2 additions and 2 deletions

View File

@ -44,8 +44,8 @@ func InitializeSourceImage(srcImg string) error {
}
// AppendLayer appends a layer onto the base image
func AppendLayer(contents []byte) error {
return sourceImage.AppendLayer(contents)
func AppendLayer(contents []byte, author string) error {
return sourceImage.AppendLayer(contents, author)
}
// PushImage pushes the final image