ContainersWorkspace/gui-container/Dockerfile
2023-07-25 20:39:17 +02:00

27 lines
535 B
Docker

FROM registry.fedoraproject.org/fedora:38
ENV HISTSIZE=10000
ENV HISTTIMEFORMAT="%d/%m/%y %T "
ENV HISTFILESIZE=20000
ENV GENERAL_PKGS="\
bash-completion \
procps \
iproute \
fzf \
wget \
git \
firefox \
dbus \
dbus-x11 \
strace \
systemd"
# install system dependencies
RUN dnf install -y \
${GENERAL_PKGS} \
&& dnf clean all
RUN echo $'[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash' >> /root/.bashrc
ENTRYPOINT [ "/sbin/init" ]