Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 522 Bytes

File metadata and controls

14 lines (10 loc) · 522 Bytes

The Dockerfile has been created to ease the local run of the Streamlit app.

To build the Docker image, run the following command in your terminal from the project root directory:

docker build -t brain-tumor-detector .

Once the image is built, you can run the Streamlit application using:

docker run -p 8501:8501 brain-tumor-detector

This will map port 8501 from the container to port 8501 on your local machine, allowing you to access the Streamlit app in your browser at http://localhost:8501.