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