From 4e1737f5b3f34210a7a15a9cd5bead9124d5f10b Mon Sep 17 00:00:00 2001 From: Job79 Date: Mon, 29 Dec 2025 15:33:46 +0100 Subject: [PATCH] ci: add dnf cache --- containers/fedora/Containerfile | 11 +++++------ containers/go/Containerfile | 3 ++- containers/infra/Containerfile | 4 ++-- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/containers/fedora/Containerfile b/containers/fedora/Containerfile index 2b78b15..223b2ba 100644 --- a/containers/fedora/Containerfile +++ b/containers/fedora/Containerfile @@ -1,16 +1,15 @@ FROM quay.io/fedora/fedora:43 # === install system packages === -RUN dnf update -y && \ +RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \ + dnf update -y && \ dnf copr enable -y atim/lazygit && \ - dnf -y install procps ping bash-completion glibc-langpack-en \ + dnf -y --setopt=keepcache=1 install procps ping bash-completion glibc-langpack-en \ host-spawn dbus-launch \ - zoxide git npm neovim awk jq unzip fd-find lazygit && \ - dnf clean all + zoxide git npm neovim awk jq unzip fd-find lazygit # === setup user === -RUN useradd -ms /bin/bash user && \ - echo 'user ALL=NOPASSWD: ALL' > /etc/sudoers +RUN useradd -ms /bin/bash user && echo 'user ALL=NOPASSWD: ALL' > /etc/sudoers USER user WORKDIR /home/user diff --git a/containers/go/Containerfile b/containers/go/Containerfile index 2e7222f..7cdd0fe 100644 --- a/containers/go/Containerfile +++ b/containers/go/Containerfile @@ -2,6 +2,7 @@ ARG TAG FROM job79/fedora:${TAG} USER root -RUN dnf -y install go && dnf clean all +RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \ + dnf -y --setopt=keepcache=1 install go USER user diff --git a/containers/infra/Containerfile b/containers/infra/Containerfile index 0aad236..cb8ef18 100644 --- a/containers/infra/Containerfile +++ b/containers/infra/Containerfile @@ -2,8 +2,8 @@ ARG TAG FROM job79/fedora:${TAG} USER root -RUN dnf -y install kubectl k9s openssl age "$(curl -s https://api.github.com/repos/getsops/sops/releases/latest | jq -r '.assets[] | select(.name | test("sops-.*.x86_64.rpm$")) | .browser_download_url')" && \ - dnf clean all && \ +RUN --mount=type=cache,id=dnf-cache,target=/var/cache/libdnf5 \ + dnf -y --setopt=keepcache=1 install kubectl k9s openssl age "$(curl -s https://api.github.com/repos/getsops/sops/releases/latest | jq -r '.assets[] | select(.name | test("sops-.*.x86_64.rpm$")) | .browser_download_url')" && \ curl -sL https://talos.dev/install | sh && \ curl -s https://fluxcd.io/install.sh | bash