Spaces:
Sleeping
Sleeping
#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"] |