zkt25/z2/prepare-app.sh

11 lines
218 B
Bash

#!/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."