.
This commit is contained in:
16
Toolbox/base/build.sh
Executable file
16
Toolbox/base/build.sh
Executable 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"
|
||||
Reference in New Issue
Block a user