Compare commits

...

3 Commits

Author SHA1 Message Date
b2f4228a73 another recipe retaining gui 2024-04-24 08:13:53 +05:30
7918816622 oops. really? missed a few of those? smh 2024-04-24 08:12:17 +05:30
1a70dd59bc crazy rewrite to make slimmer non-gui image 2024-04-24 08:04:11 +05:30
2 changed files with 26 additions and 1 deletions

View File

@@ -1,5 +1,12 @@
FROM registry.fedoraproject.org/fedora-toolbox:39 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 \ RUN dnf check-update || true \
&& dnf -y install \ && dnf -y install \
zsh \ zsh \

18
fedora-toolbox-gui Normal file
View File

@@ -0,0 +1,18 @@
FROM registry.fedoraproject.org/fedora-toolbox:39 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