add gui-container, rathole, snowflake
This commit is contained in:
parent
daeba22664
commit
89a002f480
4 changed files with 113 additions and 0 deletions
28
gui-container/Dockerfile
Normal file
28
gui-container/Dockerfile
Normal file
|
@ -0,0 +1,28 @@
|
|||
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" ]
|
Loading…
Add table
Add a link
Reference in a new issue