20 lines
410 B
Plaintext
20 lines
410 B
Plaintext
FROM registry.fedoraproject.org/fedora-toolbox:39 AS cleanup
|
|
|
|
RUN dnf mark install libwayland-client \
|
|
&& dnf -y -C rm mesa-\* glibc-all-langpacks
|
|
|
|
RUN dnf config-manager --disable 'fedora-cisco-openh264'
|
|
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
|