MCPcopy Create free account
hub / github.com/coder/envbuilder / Compiled

Struct Compiled

devcontainer/devcontainer.go:66–76  ·  view source on GitHub ↗

Compiled is the result of compiling a devcontainer.json file.

Source from the content-addressed store, hash-verified

64
65// Compiled is the result of compiling a devcontainer.json file.
66type 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
78func SubstituteVars(s string, workspaceFolder string, lookupEnv func(string) (string, bool)) string {
79 var buf string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected