Add manuals to ttyd image
This commit is contained in:
parent
6766df3c2a
commit
9682711640
1 changed files with 10 additions and 2 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue