- Clone the repository
git clone https://github.com/Scoutflo/ai-debugger.git
cd ai-debugger
- Create and activate virtual environment
python -m venv venv
source venv/bin/activate
- Install requirements
pip install -r requirements.txt
docker build -t my-python-app .
docker run -p 8000:8000 my-python-app
The application can be configured using environment variables when running the Docker container. Example:
docker run -e VAR_NAME=value -p 8000:8000 my-python-app
All required packages are listed in requirements.txt
and automatically installed during the Docker build process.
.
├── Dockerfile
├── README.md
├── requirements.txt
├── app.py # Main application entrypoint
└── (other project files)
The Dockerfile copies the entire directory structure into the container's /app
working directory.