Closed nidibm closed 4 months ago
@ibmmqmet Can you please have a look into this issue. Deployment is failing with node 18 also.
I don't know why you think this is anything to do with this repository. There's nothing in that log that even mentions this package. The last line showing connection failures might be where you need to investigate.
waiting for readiness check to succeed: failed to make TCP connection to 10.247.6.198:3000
suggests that your express app failed to start.
The rest of the logs show some npm
actions, none of which suggest an error. So I think your have a readiness check listening on port 3000
, but you don't have an express app, or your express app has been given another port.
You may need to raise the level of logging from the npm commands you are issuing. eg. For npm install
:
npm install --loglevel verbose
For npm start
DEBUG=* npm start
After changing our base image to work on
FROM ubuntu:jammy
asbionic
is now out of support and due to security constraints , we are getting hit with deployment failures on CF.