A REST endpoint that accept a list of meal IDs an return the Id of the meal that requires the least number of ingredient to prepare, Using "TheMealDB" API
#STEPS ON HOW TO RUN THE WEB SERVICE USING DOCKER
Below are the steps taken to run the web service using docker.
- Have docker install on your machine
- clone the repo
- CD to the Project Directory then
- run
docker build -t mealdb-web-service .
- To start your container run
docker run -p 4000:4000 mealdb-web-service
- Head over to your Browser and enter http://localhost:4000
- You should see your mealdb web service running docker container running
#STEPS ON HOW TO DEPLOY THE WEB SERVICE USING DOCKER
Below are the steps taken to run the web service using docker.
Article Coming Up!