Add PreBuild steps

They are executed when building the "builder" image, those are not accounted to the diffs when producing the final artifact
This commit is contained in:
Ettore Di Giacinto
2019-11-08 18:28:01 +01:00
parent 287212db1c
commit 0321973359
2 changed files with 23 additions and 5 deletions

View File

@@ -45,4 +45,10 @@ type CompilationSpec interface {
GetImage() string
SetImage(string)
SetOutputPath(string)
GetOutputPath() string
Rel(string) string
GetPreBuildSteps() []string
}