cleanup scripts

This commit is contained in:
chauhang 2025-06-23 21:52:10 -07:00
parent 109cb66b3a
commit b9c90970db
1 changed files with 0 additions and 22 deletions

View File

@ -1,22 +0,0 @@
#!/bin/bash
# Enable BuildKit for faster builds
export DOCKER_BUILDKIT=1
# Build the image with BuildKit optimizations
echo "Building with BuildKit optimizations..."
docker build \
--progress=plain \
--tag tradingagents:latest \
.
echo "Build completed!"
echo ""
echo "To run the container:"
echo "docker run -it tradingagents2:latest"
echo ""
echo "To test Ollama connection first:"
echo "docker run --rm -it tradingagents:latest python test_ollama_connection.py"
echo ""
echo "To build with additional BuildKit features:"
echo "docker build --build-arg BUILDKIT_INLINE_CACHE=1 --tag tradingagents:latest ."