Build the Docker Image From the root directory of your project, run:
docker build -t deepgit-app .This command builds a Docker image tagged as deepgit-app using Python 3.10-slim as the base image and installs all the necessary dependencies.
Once the image is built, start a container with:
docker run -p 7860:7860 deepgit-appThis command maps port 7860 from the container to your local machine, allowing you to access the Gradio interface of DeepGit in your web browser.