Built is a file that is created in the workspace when envbuilder has already been run. This is used to skip building when a container is restarting. e.g. docker stop -> docker start
()
| 66 | // to skip building when a container is restarting. |
| 67 | // e.g. docker stop -> docker start |
| 68 | func (m WorkingDir) Built() string { |
| 69 | return m.Join("built") |
| 70 | } |
| 71 | |
| 72 | // Image is a file that is created in the image when |
| 73 | // envbuilder has already been run. This is used to skip |