28 lines
690 B
Docker
28 lines
690 B
Docker
FROM registry.fedoraproject.org/fedora:37
|
|
|
|
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"
|
|
|
|
# install system dependencies
|
|
RUN dnf install -y \
|
|
${GENERAL_PKGS} \
|
|
&& dnf clean all
|
|
|
|
RUN echo $'[ -f /usr/share/fzf/key-bindings.bash ] && source /usr/share/fzf/key-bindings.bash \n\
|
|
[ -f /usr/share/fzf/shell/key-bindings.bash ] && source /usr/share/fzf/shell/key-bindings.bash \n\
|
|
[ -f /usr/share/fzf/completion.bash ] && source /usr/share/fzf/completion.bash' >> /root/.bashrc
|
|
|
|
ENTRYPOINT [ "/bin/bash" ]
|