boots to DE.

This commit is contained in:
Matt Knoop
2025-11-23 11:26:08 -07:00
parent 704fa1b0aa
commit 26645cc10d
13 changed files with 44 additions and 18 deletions

View File

@@ -3,8 +3,9 @@ set -e
cd "$(dirname "$0")"
dir=$(dirname "$0")
echo $dir
podman run --rm -d --name ubuntu ubuntu:latest /bin/bash -c "while true; do sleep 1; done"
podman export -o ./ubuntu.tar ubuntu
cat ./filesystem_containerfile | /usr/bin/podman build -f - -t patronagefs:latest
podman run --rm -d --name patronagefs patronagefs:latest /bin/bash -c "while true; do sleep 1; done"
podman export -o ./patronagefs.tar patronagefs
echo 'exported.'
podman stop ubuntu
podman stop patronagefs