1
0
Fork 0

feat: update existing container in case of containerfile changes

timestamps
dump_stack() 2023-05-24 09:08:31 +00:00
parent 4a5376eb43
commit bff4422098
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 11 additions and 2 deletions

View File

@ -208,7 +208,16 @@ func (c Container) Build(image string, envs, runs []string) (err error) {
return
}
c.Log.Debug().Msg("generate")
if c.Exist() {
c.Log.Info().Msg("update")
err = os.WriteFile(cfile, []byte(cf), os.ModePerm)
if err != nil {
return
}
} else {
c.Log.Info().Msg("build")
}
output, err := c.build(cdir)
if err != nil {
@ -216,7 +225,7 @@ func (c Container) Build(image string, envs, runs []string) (err error) {
return
}
c.Log.Debug().Msg("success")
c.Log.Info().Msg("success")
return
}