Closed giffiecode closed 9 months ago
You're correct that the port 5000 on the container has been routed to 22222 on the lambda server. Port 5000 is the default port for flask, but likely you have changed this somewhere to be something else. You should look for all the instances of 5000 in the tutorial and ensure that you still have it set to 5000 in your code.
resolved! it was in my .env.dev file that the port was set to 22222 instead of 5000. thank @mikeizbicki
I got the the return above, indicating that my docker task is running correctly. I then run
curl http://localhost:22222
but gotinstead of the json containing hello world. anyone knows how to resolve this issue?