Skip to content

Commit fd5aa83

Browse files
committed
add
1 parent 51f372e commit fd5aa83

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,13 @@ RUN apt-get update && apt-get install -y \
126126
ripgrep \
127127
fd-find \
128128
bat \
129-
exa \
130129
&& rm -rf /var/lib/apt/lists/*
131130

131+
# Install eza (modern replacement for exa)
132+
RUN wget -c https://github.com/eza-community/eza/releases/latest/download/eza_x86_64-unknown-linux-gnu.tar.gz -O - | tar xz && \
133+
chmod +x eza && \
134+
mv eza /usr/local/bin/
135+
132136
# Install ttyd for web-based terminal access
133137
RUN wget -O /tmp/ttyd https://github.com/tsl0922/ttyd/releases/latest/download/ttyd.x86_64 && \
134138
chmod +x /tmp/ttyd && \

0 commit comments

Comments
 (0)