Add manuals to ttyd image

This commit is contained in:
Mo 2022-08-24 23:40:40 +02:00
parent 6766df3c2a
commit 9682711640

View file

@ -10,20 +10,28 @@ buildah rm builder &>/dev/null
buildah from --pull --name builder registry.fedoraproject.org/fedora:latest
# Remove flag that prevents installing docs
buildah run builder -- sed -i /nodocs/d /etc/dnf/dnf.conf
buildah run builder -- dnf update -y
# Reinstall packages to install missing docs
set -l installed_packages (buildah run builder -- dnf list --installed | tail -n +2 | awk '{print $1}')
buildah run builder -- dnf reinstall -y $installed_packages
buildah run builder -- dnf install -y \
cargo \
fish \
git \
git-lfs \
htop \
jq \
man-db \
man-pages \
nano \
neovim \
openssh-clients \
openssl-devel \
passwd \
pipx \
procps-ng \
python3 \
python3-ipython \