ostree-unverified-image:oci:/var/run/image/etc/zerolayer (Containerfile, etc - basically your image's git repo)act_runner working on podman on silverblue with selinux... where it can do all the stuff i need... the tricks were simply setting a symlink for /var/run/docker.sock -> /run/podman/podman.sock and setting label=false in my containers.conffleek add kind of functionalitycat /usr/local/bin/zerolayer
#!/usr/bin/env python3
from subprocess import run
def main():
img_dir = "/var/run/image"
# Preemptive cleanup to avoid build errors
cleanup_cmd = ["rm", "-rf", img_dir]
run(cleanup_cmd)
podman_build = [
"buildah",
"bud",
"-t",
"oci:/var/run/image",
"/etc/zerolayer"
]
run(podman_build)
# Post build cleanup
run(cleanup_cmd)
if __name__ == "__main__":
main()ostree-unverified-image:oci:/var/run/image/etc/zerolayeract_runnerfleek adduser@localhost ~> sudo -u user notify-send "hi"
GDBus.Error:org.freedesktop.DBus.Error.NoReply: Message recipient disconnected from message bus without replying sudo -u user DISPLAY=:0 DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus notify-send 'Hello world!' 'This is an example notification.'