From 2afc0c3e6db1df1363f4d41f0f1f81826aac3da5 Mon Sep 17 00:00:00 2001 From: sbshah97 Date: Fri, 5 Jan 2024 17:12:58 +0000 Subject: [PATCH] Update intro for invocation images Signed-off-by: sbshah97 --- .../concepts-and-components/intro-invocation-images.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/content/docs/introduction/concepts-and-components/intro-invocation-images.md b/docs/content/docs/introduction/concepts-and-components/intro-invocation-images.md index fdc8d9f3e..c046bc77c 100644 --- a/docs/content/docs/introduction/concepts-and-components/intro-invocation-images.md +++ b/docs/content/docs/introduction/concepts-and-components/intro-invocation-images.md @@ -226,8 +226,7 @@ WORKDIR ${BUNDLE_DIR} CMD ["/cnab/app/run"] ``` -Porter starts the [Dockerfile](/bundle/custom-dockerfile) by using a base image. You can customize the base image by specifying a Dockerfile template in the porter.yaml. By default, Porter only targets a single os/architecture(linux/amd64) for invocation image. If you want to use other platform, feel free to change the platform flag in the generated Dockerfile template. Next, a set of CA certificates is added. Next, contents of the current directory are copied into the bundle directory (/cnab/app) in the invocation image. This will include any contributions from the mixin executables. Finally, an entry point that conforms to the CNAB specification is added to the image. - +Porter starts the [Dockerfile](/bundle/custom-dockerfile) by using a base image. You can customize the base image by specifying a Dockerfile template in the porter.yaml. By default, Porter only targets a single os/architecture(linux/amd64) for the bundle installer. If you want to use other platform, feel free to change the platform flag in the generated Dockerfile template. Next, a set of CA certificates is added. Then, contents of the current directory are copied into the bundle directory (/cnab/app) in the bundle installer. This will include any contributions from the mixin executables. Finally, an entry point that conforms to the CNAB specification is added to the image. Once this is completed, the image is built: ```console