#!/bin/sh

# script/bootstrap: Resolve all dependencies that the application requires to run

set -e

cd "$(dirname "$0")/.."

if command -v podman &> /dev/null; then
    sudo apt-get update &> /dev/null
    sudo apt-get install podman
fi

