Hi,
I am trying to deploy an application to Azure App Service. The app uses Node.js, Vue and AWS Amplify.
The deployment is done using a local git and pushing to a remote.
The package.json has the scripts:
"scripts": {
"start": "vue-cli-service serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src \"./src/**/.?(js|vue)\" --locales \"./src/locales//.json\""
},
Even though the deployment seems correct, the app doesn't respond giving the next error:
ERROR - Container XXXXXX for site XXXXXX did not start within expected time limit. Elapsed time = 230.2496671 sec
ERROR - Container XXXXXX didn't respond to HTTP pings on port: 8080, failing site start. See container logs for debugging.
I've added an application setting named WEBSITES_PORT with value 8080 but it didn't work either.
Right now the app is not responding and logs show nothing.
I'd appreciate any help.
Thank you!