This commit is contained in:
2025-11-11 21:00:37 -06:00
parent 544d1c31e5
commit 53b986d3f7
37 changed files with 3433 additions and 2 deletions

16
Toolbox/base/build.sh Executable file
View File

@@ -0,0 +1,16 @@
#!/bin/bash
# Build script for tsysdevstack-toolboxstack-toolbox-base Docker image
set -e # Exit immediately if a command exits with a non-zero status
IMAGE_NAME="tsysdevstack-toolboxstack-toolbox-base"
CONTEXT_DIR="."
echo "Building Docker image: $IMAGE_NAME"
# Build the Docker image
docker build -t "$IMAGE_NAME" "$CONTEXT_DIR"
echo "Build completed successfully!"
echo "To run the container, use: ./run.sh"