container-schulung/listings/exercises/ex12a-containerfile-steps/hello.sh
Frank Engel dd1d905371 ex12a: Containerfile Schritt für Schritt aufbauen
hello.sh, Containerfile (Referenz) und commands.txt
mit allen 6 Schritten inkl. Layer-Bonus.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-08-05 12:35:36 +02:00

5 lines
117 B
Bash

#!/bin/bash
echo "Hello, ${NAME:-World}!"
echo "Hostname: $(hostname)"
echo "Date: $(date)"
curl --version | head -1