19 lines
305 B
Plaintext
19 lines
305 B
Plaintext
FROM registry.fedoraproject.org/fedora-toolbox:40 AS cleanup
|
|
|
|
RUN dnf -y -C rm glibc-all-langpacks
|
|
|
|
RUN dnf check-update || true
|
|
|
|
FROM cleanup
|
|
|
|
RUN dnf check-update || true \
|
|
&& dnf -y install \
|
|
zsh \
|
|
tmux \
|
|
nnn \
|
|
curl \
|
|
kitty-terminfo \
|
|
neovim \
|
|
make \
|
|
&& dnf clean packages expire-cache
|