9 lines
145 B
Bash
Executable file
9 lines
145 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
set -eu
|
|
distro="$1"
|
|
|
|
podman stop --time 3 "en-$distro"
|
|
podman build \
|
|
--tag "en-$distro" \
|
|
-f "Containerfile.$distro"
|