Build a custom transform service using code editor

Pre-requisite - To initiate the build process for your custom transform service, a Docker file in your active branch is mandatory.

The Dockerfile must include, at minimum:

  1. From: Command to pull Base image for the Docker container.

  2. Working Directory - Set the working directory inside the container and this directory will be used for running commands and copying files

  3. Copy Command - Copies the files from the host machine (the directory where the Docker file is located) to the directory in the container.

  4. Run Command - This command is used to install the necessary package or plugin

  5. Expose Command - Informs Docker that where should the container listen to.

  6. CMD Command - Specifies the default command to run when the container starts.

To build a custom transform service using code editor, please follow below steps:

Step 1 - All repo from your Github account is now available in code editor. Choose the repo on which you want to build the custom transform

Step 2 - Choose the branch where you want to develop your custom transform build. Selecting a repository and branch makes the relevant files and folders accessible in your code editor. The pulled content reflects the specific state of the chosen branch.

Step 3 - Use your code editor to write the code for your transform service if required, adhering to the specific requirements and functionalities outlined for your custom transform.

Step 4 - Once you are satisfied with the functionality, you have the option to commit any changes made using the "Commit Changes" option and commit them to the active branch. Alternatively, you can build directly if no changes need to be committed.

Step 5 - Click on “Build” option and provide Image name and Tag value to initiate the build

Last updated