ContainersWorkspace/gui-container/Containerfile

33 lines
619 B
Text
Raw Normal View History

2024-03-20 21:17:33 +00:00
FROM registry.fedoraproject.org/fedora-minimal
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 \
2024-03-20 21:17:33 +00:00
firefox"
2023-08-13 15:09:19 +00:00
2023-09-05 18:04:41 +00:00
# install dependencies and basic apps
2024-03-20 21:17:33 +00:00
RUN dnf5 install -y \
2023-03-18 18:14:16 +00:00
${GENERAL_PKGS} \
2023-08-13 15:09:19 +00:00
${APPS} \
2024-03-20 21:17:33 +00:00
&& dnf5 clean all
2023-03-18 18:14:16 +00:00
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" ]