The application was deployed successfully, and I added the port correctly, and nothing wrong with the logs (both application and env view). How can I solve this problem?
Here is my Dockerfile.
FROM node:12
WORKDIR /app
COPY . /app/
EXPOSE 5000
RUN yarn install
CMD [“yarn”, “start”]
For the record, the issue was due to us doing a migration. You created your application beginning of July, we made a migration on how we handle domain, just after that, and you declared a port for your application after the migration
A lot of words to say, that your application was stuck between two ways of handling things on our side.