Docker image using streamlit to test the bug detection pipeline.
docker compose updocker build . --tag bug-detection-v1
docker run --it -p 8051:8051 bug-detection-v1:latestpip install -r requirements.txt
streamlit run app.pyThis will download all the dependencies from requirements.txt and the models
from huggingface. Then it will run the Streamlit application on the address:
localhost:8051.
