updates to gui-container

This commit is contained in:
Maciej Lebiest 2023-08-13 17:09:19 +02:00
parent ac0490dca0
commit b57071d343

View file

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