From b9c90970db233129adf49cd354c8a4c992150ccf Mon Sep 17 00:00:00 2001 From: chauhang <4461127+chauhang@users.noreply.github.com> Date: Mon, 23 Jun 2025 21:52:10 -0700 Subject: [PATCH] cleanup scripts --- build.sh | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 build.sh diff --git a/build.sh b/build.sh deleted file mode 100644 index 51f0c567..00000000 --- a/build.sh +++ /dev/null @@ -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 ." \ No newline at end of file