7 lines
139 B
Bash
Executable File
7 lines
139 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Exit on error, undefined vars, and pipe failures
|
|
set -euo pipefail
|
|
|
|
apt-get update
|
|
apt-get -y install podman buildah |