| 55 | } |
| 56 | |
| 57 | type BuildSpec struct { |
| 58 | Dockerfile string `json:"dockerfile"` |
| 59 | Context string `json:"context"` |
| 60 | Args map[string]string `json:"args"` |
| 61 | Target string `json:"target"` |
| 62 | CacheFrom string `json:"cache_from"` |
| 63 | } |
| 64 | |
| 65 | // Compiled is the result of compiling a devcontainer.json file. |
| 66 | type Compiled struct { |
nothing calls this directly
no outgoing calls
no test coverage detected