1
0
Fork 0
mirror of https://github.com/containers/youki synced 2024-04-27 12:25:03 +02:00

update dependencies described in docs

Signed-off-by: l0rem1psum <iswenxuan@gmail.com>
This commit is contained in:
l0rem1psum 2023-05-23 22:28:24 +00:00 committed by 武文轩
parent 50294dd03e
commit 30a1e0961e
2 changed files with 5 additions and 3 deletions

View File

@ -153,7 +153,8 @@ $ sudo apt-get install \
build-essential \
libelf-dev \
libseccomp-dev \
libclang-dev
libclang-dev \
libssl-devel
```
### Fedora, Centos, RHEL and related distributions
@ -165,7 +166,8 @@ $ sudo dnf install \
dbus-devel \
elfutils-libelf-devel \
libseccomp-devel \
clang-devel
clang-devel \
openssl-devel
```
## Build

2
Vagrantfile vendored
View File

@ -12,7 +12,7 @@ Vagrant.configure("2") do |config|
config.vm.provision "shell", inline: <<-SHELL
set -e -u -o pipefail
yum update -y
yum install -y git gcc docker systemd-devel dbus-devel libseccomp-devel
yum install -y git gcc docker systemd-devel dbus-devel libseccomp-devel wget openssl-devel
grubby --update-kernel=ALL --args="systemd.unified_cgroup_hierarchy=0"
service docker start
SHELL