model_testing / Dockerfile
prd101-wd's picture
Update Dockerfile
a12acd4 verified
raw
history blame
329 Bytes
#pull the image from dockerhub
FROM parthardas/banking-finetuned-phi1-5:latest
#expose the port that Hugging Face Spaces allows by default
EXPOSE 7860
# define command that will override the docker image's Dockerfile CMD command
CMD ["streamlit", "run", "pipeline_consumer.py", "--server.port=7860", "--server.address=0.0.0.0"]