diff --git a/gui-container/Dockerfile b/gui-container/Dockerfile index 3d8492c..26efd50 100644 --- a/gui-container/Dockerfile +++ b/gui-container/Dockerfile @@ -3,6 +3,7 @@ FROM registry.fedoraproject.org/fedora:38 ENV HISTSIZE=10000 ENV HISTTIMEFORMAT="%d/%m/%y %T " ENV HISTFILESIZE=20000 +ENV QT_QPA_PLATFORM=wayland ENV GENERAL_PKGS="\ bash-completion \ @@ -11,15 +12,19 @@ ENV GENERAL_PKGS="\ fzf \ wget \ git \ - firefox \ dbus \ dbus-x11 \ strace \ systemd" +ENV APPS="\ + chromium \ + firefox" + # install system dependencies RUN dnf install -y \ ${GENERAL_PKGS} \ + ${APPS} \ && dnf clean all RUN echo $'[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash' >> /root/.bashrc