ContainersWorkspace/gui-container/Dockerfile

33 lines
604 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 \
firefox"
2023-03-18 18:14:16 +00:00
# install system dependencies
RUN dnf install -y \
${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" ]