###Docker file details
To build the image:
docker build --tag flask-micro .
To see the image:
docker images
To create a container:
docker run --p 5000:5000 flask-micro
###User Microservices details
####User API End Points
/api/user/all - GET[Going to return list of all users]/api/user/create - POST[Going to create a user]/api/user/login - POST[Login the user]/api/user/logout - POST[Logout the user]/api/user/<username>/exists - GET[Check if user exists or not]/api/user/ - GET[Details about currently logged in user]
We need to create different venv for each project, for being lazy i am creating one