ContainersWorkspace/gui-container/Dockerfile

35 lines
710 B
Text
Raw Normal View History

2023-04-23 18:20:41 +00:00
FROM registry.fedoraproject.org/fedora:38
2023-03-18 18:14:16 +00:00
ENV HISTSIZE=10000
ENV HISTTIMEFORMAT="%d/%m/%y %T "
ENV HISTFILESIZE=20000
2023-08-13 15:09:19 +00:00
ENV QT_QPA_PLATFORM=wayland
2023-03-18 18:14:16 +00:00
ENV GENERAL_PKGS="\
bash-completion \
procps \
iproute \
fzf \
wget \
git \
dbus \
dbus-x11 \
2023-07-25 18:39:17 +00:00
strace \
systemd"
2023-03-18 18:14:16 +00:00
2023-08-13 15:09:19 +00:00
ENV APPS="\
chromium \
2023-09-05 18:04:41 +00:00
firefox \
librewolf"
2023-08-13 15:09:19 +00:00
2023-09-05 18:04:41 +00:00
# install dependencies and basic apps
RUN dnf config-manager --add-repo https://rpm.librewolf.net/librewolf-repo.repo \
dnf install -y \
2023-03-18 18:14:16 +00:00
${GENERAL_PKGS} \
2023-08-13 15:09:19 +00:00
${APPS} \
2023-03-18 18:14:16 +00:00
&& dnf clean all
RUN echo $'[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash' >> /root/.bashrc
2023-03-18 18:14:16 +00:00
2023-07-25 18:39:17 +00:00
ENTRYPOINT [ "/sbin/init" ]