Failed to start container: The container is not listening in the TCP address 10.0.0.1:5000standard instance. 
Failed to start container: The container is not listening in the TCP address 10.0.0.1:5000standard - name: Build and push Docker image to Cloudflare Registry
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
wranglerVersion: 4
workingDirectory: build/dist/temp/
command: containers build -p -t labelzoom-api-spring:${{needs.set-version.outputs.release_version}} ."containers": [
{
"class_name": "LzApiContainer",
"image": "registry.cloudflare.com/<redacted>/labelzoom-api-spring:2.8.52",
"max_instances": 10,
"name": "labelzoom-api-spring",
"instance_type": "standard",
}
],// Route all unrecognized requests to container
app.notFound(async (c) => {
// const container = await getRandom(c.env.LZ_API_CONTAINER, LOAD_BALANCER_COUNT);
const container = await getContainer(c.env.LZ_API_CONTAINER);
return await container.fetch(c.req.raw);
});