Unable to execute TestCases over Linux through jenkins

Hello All,
I have been facing issue while running my test collection through Azure DevOps pipeline.
The error gets captured in TestOps as below :-1:
Unknown error: Chrome failed to start: exited abnormally.\n (unknown error: DevToolsActivePort file doesn’t exist)\n (The process started from chrome location /usr/bin/google-chrome is no longer running, so ChromeDriver is assuming that Chrome has crashed.)\nBuild info: version: ‘3.141.59’, revision: ‘e82be7d358’, time: ‘2018-11-14T08:25:53’\nSystem info: host: ‘4cefa410d5ad’, ip: ‘xxx.x.x.x.’, os.name: ‘Linux’, os.arch: ‘amd64’, os.version: ‘4.4.0-201-generic’, java.version: ‘1.8.0_252’\nDriver info: driver.version: CChromeDriver\nremote stacktrace: #0 0x56122e3e6579 \n %

The same test collection works perfectly fine on a local machine.

I am using Katlon 7.5.5 docker image; However I have tried different versions viz. 760,761,770,780, latest but fails with the same error.

I have below command in my jenkins file:

katalonc -projectPath=/katalon/katalon/source -statusDelay=60 -browserType="${browserType[browser]}" -testSuiteCollectionPath=“Test Suites//User Interface Collection” -apiKey=${API_KEY} -executionProfile=${params.KATALON_PROFILE} -g_env=${params.KATALON_PROFILE} -g_emailAddress="${tenantEMAIL}" -g_tenantName="${tenantToUse}" --config -proxy.system.applyToDesiredCapabilities=true --info -buildLabel="${env.BUILD_TAG}" -buildURL="${env.BUILD_URL}" --config -webui.autoUpdateDrivers=true

Tagging @Vivek, @ThanhTo and @duyluong as I have seen they have faced pretty much similar issue mentioned at Unable to execute TestCases over Linux - Katalon Studio / Test Executions and Integrations - Katalon Community

It seems like Chrome is not installed at the default location. Are you executing on a remote machine or a local machine? Try uninstalling and installing Chrome again to see if it helps.

The tests are getting executed through docker image in DevOps pipeline.

There are no issues while I run them on local machine.