Created
January 6, 2022 14:17
-
-
Save sshnaidm/b30d29c7d713cdcb00812eaa8b5ce5e2 to your computer and use it in GitHub Desktop.
Build podman on CentOS 9 stream
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo dnf install golang libseccomp-devel libseccomp gpgme gpgme-devel | |
export GOPATH=$HOME/go | |
mkdir -p $GOPATH/src/github.com/containers | |
git clone https://github.com/containers/podman $GOPATH/src/github.com/containers/podman | |
cd $GOPATH/src/github.com/containers/podman/ | |
make BUILDTAGS="selinux btrfs_noversion remoteclient systemd varlink seccomp exclude_graphdriver_devicemapper $(hack/btrfs_installed_tag.sh) $(hack/btrfs_tag.sh) $(hack/libdm_tag.sh) $(hack/ostree_tag.sh) $(hack/selinux_tag.sh)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment