hello.sh, Containerfile (Referenz) und commands.txt mit allen 6 Schritten inkl. Layer-Bonus. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
5 lines
117 B
Bash
5 lines
117 B
Bash
#!/bin/bash
|
|
echo "Hello, ${NAME:-World}!"
|
|
echo "Hostname: $(hostname)"
|
|
echo "Date: $(date)"
|
|
curl --version | head -1
|