From eea31f47e776468f7b16beea790ebfe6e84aaa9f Mon Sep 17 00:00:00 2001 From: Job79 Date: Sun, 19 Oct 2025 20:37:42 +0200 Subject: [PATCH] refactor: change installed packages --- containers/base/Containerfile | 4 ++-- containers/infra/Containerfile | 2 +- containers/kali/Containerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/containers/base/Containerfile b/containers/base/Containerfile index 54d1db3..df54734 100644 --- a/containers/base/Containerfile +++ b/containers/base/Containerfile @@ -3,9 +3,9 @@ FROM quay.io/fedora/fedora:43 # === install system packages === RUN dnf update -y && \ dnf copr enable -y atim/lazygit && \ - dnf -y install procps ping bash-completion glibc-langpack-en openssl \ + dnf -y install procps ping bash-completion glibc-langpack-en \ host-spawn dbus-launch \ - zoxide git npm neovim awk jq unzip fd-find chafa lazygit + zoxide git npm neovim awk jq unzip fd-find lazygit # === setup user === RUN useradd -ms /bin/bash user && \ diff --git a/containers/infra/Containerfile b/containers/infra/Containerfile index 8d51380..7deebe8 100644 --- a/containers/infra/Containerfile +++ b/containers/infra/Containerfile @@ -1,5 +1,5 @@ FROM git.plabble.org/job79/base:latest USER root -RUN dnf -y install kubectl +RUN dnf -y install kubectl openssl RUN curl -sL https://talos.dev/install | sh USER user diff --git a/containers/kali/Containerfile b/containers/kali/Containerfile index c43e801..496f35a 100644 --- a/containers/kali/Containerfile +++ b/containers/kali/Containerfile @@ -2,7 +2,7 @@ FROM docker.io/kalilinux/kali-rolling # === install system packages === RUN apt update && \ - apt install iputils-ping sudo \ + apt -y install iputils-ping sudo \ zoxide git npm neovim gawk jq unzip fd-find lazygit # === setup user ===