Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 904 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 904 Bytes

docker-python-text-classifier

From Dev to Ops. This is the source code for the 3 part series on building a text classifier in Python and Docker

For development use:

docker run -it -p 8888:8888 -v $(pwd):/home/jovyan/work jupyter/datascience-notebook

For deployment use:

docker build -t <your_docker_id>/text-classifier-service .
docker run -it --rm -p 5000:5000 <your_docker_id>/text-classifier-service

Full guide at: