#!/usr/bin/env bash # Prepare the environment: build Docker image set -e IMAGE_NAME="simple-web-app:latest" echo "Building Docker image ${IMAGE_NAME}..." docker build -t ${IMAGE_NAME} . echo "Preparation complete."