Bakeable stamps itself out onto a temporary directory
| 13 | |
| 14 | // Bakeable stamps itself out onto a temporary directory |
| 15 | type Bakeable interface { |
| 16 | Bake(overlayroot string) error |
| 17 | } |
| 18 | |
| 19 | // file replaces the contents of a file in the original filesystem with fixed contents |
| 20 | type file struct { |