diff options
-rw-r--r-- | recipes-extended/images/container-devtools-base.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes-extended/images/container-devtools-base.bb b/recipes-extended/images/container-devtools-base.bb new file mode 100644 index 00000000..21120d1f --- /dev/null +++ b/recipes-extended/images/container-devtools-base.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Basic container image with development tools" | ||
2 | LICENSE = "MIT" | ||
3 | LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" | ||
4 | |||
5 | CONTAINER_SHELL="bash" | ||
6 | |||
7 | CORE_DEV_IMAGE_EXTRA_INSTALL ?= "" | ||
8 | |||
9 | include container-base.bb | ||
10 | inherit core-image | ||
11 | |||
12 | IMAGE_INSTALL += " \ | ||
13 | ${CORE_DEV_IMAGE_EXTRA_INSTALL} \ | ||
14 | " | ||
15 | |||
16 | OCI_IMAGE_ENTRYPOINT = "" | ||
17 | |||
18 | # development headers, tools and package management to update | ||
19 | # the container. | ||
20 | IMAGE_FEATURES += "dev-pkgs" | ||
21 | IMAGE_FEATURES += "tools-sdk" | ||
22 | IMAGE_FEATURES += "package-management" \ No newline at end of file | ||