Build a custom transform service using code editor
Last updated
Last updated
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:
From: Command to pull Base image for the Docker container.
Working Directory - Set the working directory inside the container and this directory will be used for running commands and copying files
Copy Command - Copies the files from the host machine (the directory where the Docker file is located) to the directory in the container.
Run Command - This command is used to install the necessary package or plugin
Expose Command - Informs Docker that where should the container listen to.
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: