summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2024-10-24 16:31:47 +0000
committerBruce Ashfield <bruce.ashfield@gmail.com>2024-11-15 19:50:00 +0000
commit1a4030a6c61ea9cd66859439fc25481dfe446c1e (patch)
tree6f4cf6fb761d53151f45da2cee0df62f528d0b1e
parentcbad7151f174fb5fb88aa8d062362e66dc34b5c3 (diff)
downloadmeta-virtualization-1a4030a6c61ea9cd66859439fc25481dfe446c1e.tar.gz
container-base: define empty entry point
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
-rw-r--r--recipes-extended/images/container-base.bb5
1 files changed, 5 insertions, 0 deletions
diff --git a/recipes-extended/images/container-base.bb b/recipes-extended/images/container-base.bb
index c9dd32d1..b68938b9 100644
--- a/recipes-extended/images/container-base.bb
+++ b/recipes-extended/images/container-base.bb
@@ -7,6 +7,7 @@ LICENSE = "MIT"
7LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" 7LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
8 8
9IMAGE_FSTYPES = "container oci" 9IMAGE_FSTYPES = "container oci"
10
10inherit image 11inherit image
11inherit image-oci 12inherit image-oci
12 13
@@ -21,6 +22,10 @@ IMAGE_INSTALL = " \
21 ${CONTAINER_SHELL} \ 22 ${CONTAINER_SHELL} \
22" 23"
23 24
25# Keep the entrypoint empty so that this image can be easily be
26# inherted and re-used for interactive or non interactive images
27OCI_IMAGE_ENTRYPOINT ?= ""
28
24# If the following is configured in local.conf (or the distro): 29# If the following is configured in local.conf (or the distro):
25# PACKAGE_EXTRA_ARCHS:append = " container-dummy-provides" 30# PACKAGE_EXTRA_ARCHS:append = " container-dummy-provides"
26# 31#