zkt25/Exam/prepare-app.sh
2025-05-11 00:01:27 +02:00

10 lines
211 B
Bash
Executable File

#!/usr/bin/env bash
set -e
# Name for the Docker image
IMAGE_NAME="karel-simulator"
echo "🔨 Building Docker image '$IMAGE_NAME'..."
docker build -t "${IMAGE_NAME}" .
echo "✅ Image '${IMAGE_NAME}' built."