various updates
All checks were successful
Build images / build-images-amd64 (push) Successful in 13m45s
Build images / build-images-arm64 (push) Successful in 19m39s
Build images / update-images-manifests (push) Successful in 27s

This commit is contained in:
Maciej Lebiest 2024-03-20 22:30:09 +01:00
parent a276eebb22
commit 8c86d9aaf3
4 changed files with 15 additions and 19 deletions

View file

@ -1,4 +1,4 @@
FROM registry.fedoraproject.org/fedora:39
FROM registry.fedoraproject.org/fedora-minimal
ENV HISTSIZE=10000
ENV HISTTIMEFORMAT="%d/%m/%y %T "
@ -19,16 +19,13 @@ ENV GENERAL_PKGS="\
ENV APPS="\
chromium \
firefox \
librewolf"
firefox"
# install dependencies and basic apps
RUN dnf install -y 'dnf-command(config-manager)' && \
dnf config-manager --add-repo https://rpm.librewolf.net/librewolf-repo.repo && \
dnf install -y \
RUN dnf5 install -y \
${GENERAL_PKGS} \
${APPS} \
&& dnf clean all
&& dnf5 clean all
RUN echo $'[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash' >> /root/.bashrc