Fix empty container layer history and UI (#21251) (#21278)

Backport of #21251
This commit is contained in:
KN4CK3R
2022-09-27 23:10:19 +08:00
committed by GitHub
parent 43b4c38d4f
commit 790770aef3
4 changed files with 15 additions and 3 deletions
+3 -1
View File
@@ -95,7 +95,9 @@ func parseOCIImageConfig(r io.Reader) (*Metadata, error) {
if i := strings.Index(cmd, "#(nop) "); i != -1 {
cmd = strings.TrimSpace(cmd[i+7:])
}
imageLayers = append(imageLayers, cmd)
if cmd != "" {
imageLayers = append(imageLayers, cmd)
}
}
metadata := &Metadata{