Compiled is the result of compiling a devcontainer.json file.
| 64 | |
| 65 | // Compiled is the result of compiling a devcontainer.json file. |
| 66 | type Compiled struct { |
| 67 | DockerfilePath string |
| 68 | DockerfileContent string |
| 69 | BuildContext string |
| 70 | FeatureContexts map[string]string |
| 71 | BuildArgs []string |
| 72 | |
| 73 | User string |
| 74 | ContainerEnv map[string]string |
| 75 | RemoteEnv map[string]string |
| 76 | } |
| 77 | |
| 78 | func SubstituteVars(s string, workspaceFolder string, lookupEnv func(string) (string, bool)) string { |
| 79 | var buf string |
nothing calls this directly
no outgoing calls
no test coverage detected