| 179 | } |
| 180 | |
| 181 | type Spec struct { |
| 182 | ID string `json:"id"` |
| 183 | Version string `json:"version"` |
| 184 | Name string `json:"name"` |
| 185 | Description string `json:"description"` |
| 186 | DocumentationURL string `json:"documentationURL"` |
| 187 | LicenseURL string `json:"licenseURL"` |
| 188 | Keywords []string `json:"keywords"` |
| 189 | Options map[string]Option `json:"options"` |
| 190 | ContainerEnv map[string]string `json:"containerEnv"` |
| 191 | } |
| 192 | |
| 193 | // Extract unpacks the feature from the image and returns a set of lines |
| 194 | // that should be appended to a Dockerfile to install the feature. |
nothing calls this directly
no outgoing calls
no test coverage detected