Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 701 Bytes

File metadata and controls

21 lines (15 loc) · 701 Bytes

DeepGit on Docker

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.

Run the Docker Container

Once the image is built, start a container with:

docker run -p 7860:7860 deepgit-app

This command maps port 7860 from the container to your local machine, allowing you to access the Gradio interface of DeepGit in your web browser.