Skip to content

Instantly share code, notes, and snippets.

@nponeccop
Created August 12, 2022 20:13
Show Gist options
  • Save nponeccop/ee4664593ebd55c1ed5251ac311dccfe to your computer and use it in GitHub Desktop.
Save nponeccop/ee4664593ebd55c1ed5251ac311dccfe to your computer and use it in GitHub Desktop.
podman tarball trick
#!/bin/bash
set -ex -o pipefail
podman build . -t small-tar
podman rm small-tar || true
podman create --name small-tar small-tar /bin/dummycmd
podman cp small-tar:/rootfs.tar rootfs.tar
podman rm small-tar || true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment