Compare commits

...

2 Commits

Author SHA1 Message Date
9cd843f749 feat: add dnf cache
All checks were successful
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 1m16s
Build containers / dependent-images (go) (push) Successful in 21s
Build containers / dependent-images (php) (push) Successful in 18s
Build containers / dependent-images (infra) (push) Successful in 1m0s
2026-03-19 19:49:17 +01:00
18889e3d26 feat: add fd-find 2026-03-19 19:44:13 +01:00
2 changed files with 5 additions and 4 deletions

View File

@@ -6,7 +6,7 @@ RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \
dnf copr enable -y gierth/tools-golang && \
dnf copr enable -y agriffis/neovim-nightly && \
dnf -y --setopt=keepcache=1 --setopt=install_weak_deps=False install \
bash-completion git fzf curl awk jq unzip which \
bash-completion git fzf curl awk jq fd-find unzip which \
host-spawn dbus-launch \
npm neovim wl-copy gcc lazygit lazysql

View File

@@ -12,9 +12,10 @@ default_args() {
run_opts+=(
"--name" "$name"
"--hostname" "$name"
"--pull=newer" # Update image.
"--userns=keep-id" # Map host user.
"-v" "$name:/home/user:copy" # Persistent home volume.
"--pull=newer" # Update image.
"--userns=keep-id" # Map host user.
"-v" "$name:/home/user:copy" # Persistent home volume.
"-v" "dnf-cache:/var/cache/libdnf5" # Cache dnf metadata.
)
# Unix sockets require SELinux label disable.