Compare commits

..

1 Commits

Author SHA1 Message Date
d505c4e65f test
All checks were successful
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 54s
Build containers / dependent-images (go) (push) Successful in 42s
Build containers / dependent-images (infra) (push) Successful in 58s
2025-12-29 15:28:29 +01:00
3 changed files with 3 additions and 6 deletions

View File

@@ -1,8 +1,7 @@
FROM quay.io/fedora/fedora:43
# === install system packages ===
RUN --mount=type=cache,target=/var/cache/dnf \
dnf update -y && \
RUN dnf update -y && \
dnf copr enable -y atim/lazygit && \
dnf -y install procps ping bash-completion glibc-langpack-en \
host-spawn dbus-launch \

View File

@@ -2,7 +2,6 @@ ARG TAG
FROM job79/fedora:${TAG}
USER root
RUN --mount=type=cache,target=/var/cache/dnf \
dnf -y install go && dnf clean all
RUN dnf -y install go && dnf clean all
USER user

View File

@@ -2,8 +2,7 @@ ARG TAG
FROM job79/fedora:${TAG}
USER root
RUN --mount=type=cache,target=/var/cache/dnf \
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')" && \
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 && \
curl -sL https://talos.dev/install | sh && \
curl -s https://fluxcd.io/install.sh | bash