7 lines
104 B
Bash
7 lines
104 B
Bash
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
IMAGE="$1"
|
|
echo "PASS: Image built successfully"
|
|
echo "1/1 tests passed"
|