Build your own Docker Image
Build your own custom Docker Image of HyperTest
HyperTest's docker images uses node:20-bookworm-slim
as a base docker image.
If you want to use your own node image as base image for HyperTest, you can do so and rebuild the image with the following script.
To build your own custom image follow the steps given in this page
Create the file named docker-image-HT-script.sh
Create the file named .env
Update the auth token, docker image name and node base image in .env file
Run the script using below command
The above script will do the following steps
Clone the rsitory containing docker artifacts
Fetch package versions from repo content for a few packages required to run HT
Build a docker image based on the name and base image you passed in .env file
NOTE: The base image should have node (version 20 as of now) and npm installed in it
Last updated