/mlops-task-4

demonstration of ML model deployement with flask using docker containerization

Primary LanguagePython

Model Deployement Using Docker

Run Using Docker Compose

docker-compose up

Run Without Make

  • Run the following command to build the docker image
docker build -t flask-image .
  • Run the following command to run the docker container
docker run -d -p 8081:8081 flask-image

OR

Run Using Make

  • Build docker container
make build
  • Run docker container
make run