[docker] clean up main dockerfile for router and dev configurations (#12364)

Co-authored-by: ybyang <ybyang7@iflytek.com>
This commit is contained in:
Chang Su
2025-10-30 07:46:09 -07:00
committed by GitHub
co-authored by ybyang
parent 700daa3463
commit ecb9fa14e6
6 changed files with 156 additions and 151 deletions
+27
View File
@@ -0,0 +1,27 @@
export ZSH="/root/.oh-my-zsh"
# Theme
ZSH_THEME="robbyrussell"
# Plugins
plugins=(
git
z
zsh-autosuggestions
zsh-syntax-highlighting
)
source $ZSH/oh-my-zsh.sh
# Aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
alias vi='vim'
# Enhanced history
HISTSIZE=10000
SAVEHIST=10000
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_FIND_NO_DUPS
setopt INC_APPEND_HISTORY