7 lines
100 B
Bash
Executable file
7 lines
100 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
|
|
distro="$1"
|
|
|
|
podman build --tag "en-$distro" -f "Containerfile.$distro"
|