spolti commented on code in PR #508: URL: https://github.com/apache/incubator-kie-kogito-docs/pull/508#discussion_r1339017177
########## serverlessworkflow/modules/ROOT/pages/cloud/operator/building-custom-images.adoc: ########## @@ -0,0 +1,136 @@ += Building a Custom Development Image +:compat-mode!: +// Metadata: +:description: Building custom development images for SonataFlow +:keywords: sonataflow, workflow, serverless, operator, kubernetes, minikube, devmode +// Links: +:rh_ubi8_url: https://catalog.redhat.com/software/containers/ubi8/ubi-minimal/5c359a62bed8bd75a2c3fba8 + +// NOTE: this guide can be expanded in the future to include prod images, hence the file name +// please change the title section and rearrange the others once it's done + +This document describes how to build a custom development image to use in SonataFlow. + +== The development mode image structure + +The base image used by the default development image is the link:{rh_ubi8_url}[Red Hat UBI 8 minimal]. You can read the image's documentation for more detailed information about that image's architecture. + +The table below lists the additional packages installed in the development mode image. + +.List of packages +[cols="1,2"] +|=== +|Package | Description + +|shadow-utils +|The shadow-utils package includes the necessary programs for converting UNIX password files to the shadow password format. + +|tar +| + +|gzip +| + +|unzip +| + +|zip +| + +|tzdata-java +| + +|java-11-openjdk-devel +|OpenJDK 11 + +|apache-maven-3.8.6-bin.tar.gz +|Apache Maven + +|=== + +The next table lists the important paths in the image's file system. Review Comment: ```suggestion The next table lists the important paths in the container image's file system. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
