build(deps): ensure that provisioning installs podman

This commit is contained in:
Marc 2024-02-03 13:20:53 -05:00
parent 787516fa2f
commit 60fe4798b7
Signed by: marc
GPG key ID: 048E042F22B5DC79
2 changed files with 8 additions and 0 deletions

1
apt.txt Normal file
View file

@ -0,0 +1 @@
podman

7
provision.sh Normal file
View file

@ -0,0 +1,7 @@
#/bin/bash
# Ensure that dependencies are up to date.
sudo apt update && sudo apt upgrade -y --autoremove
# Ensure that critical dependencies are installed.
sudo apt install $(cat apt.txt) -y