mirror of
https://github.com/0x1d/terraform-docker-packer.git
synced 2025-12-14 22:02:26 +01:00
15 lines
234 B
Bash
Executable File
15 lines
234 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
function info {
|
|
echo "PI-Lab Utils"
|
|
}
|
|
|
|
function build {
|
|
docker run --rm --privileged \
|
|
-v /dev:/dev \
|
|
-v ${PWD}:/build mkaczanowski/packer-builder-arm:latest \
|
|
build packer/raspios.pkr.hcl
|
|
}
|
|
|
|
${@:-info}
|