summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--recipes-extended/images/container-devtools-base.bb22
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 @@
1SUMMARY = "Basic container image with development tools"
2LICENSE = "MIT"
3LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
4
5CONTAINER_SHELL="bash"
6
7CORE_DEV_IMAGE_EXTRA_INSTALL ?= ""
8
9include container-base.bb
10inherit core-image
11
12IMAGE_INSTALL += " \
13 ${CORE_DEV_IMAGE_EXTRA_INSTALL} \
14 "
15
16OCI_IMAGE_ENTRYPOINT = ""
17
18# development headers, tools and package management to update
19# the container.
20IMAGE_FEATURES += "dev-pkgs"
21IMAGE_FEATURES += "tools-sdk"
22IMAGE_FEATURES += "package-management" \ No newline at end of file