various updates
Some checks failed
Build images / build-images-amd64 (push) Failing after 6m55s
Build images / build-images-arm64 (push) Failing after 8m18s
Build images / update-images-manifests (push) Has been skipped

This commit is contained in:
Maciej Lebiest 2024-03-20 22:17:33 +01:00
parent a276eebb22
commit b622342887
4 changed files with 14 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