We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51f372e commit fd5aa83Copy full SHA for fd5aa83
Dockerfile
@@ -126,9 +126,13 @@ RUN apt-get update && apt-get install -y \
126
ripgrep \
127
fd-find \
128
bat \
129
- exa \
130
&& rm -rf /var/lib/apt/lists/*
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
+
136
# Install ttyd for web-based terminal access
137
RUN wget -O /tmp/ttyd https://github.com/tsl0922/ttyd/releases/latest/download/ttyd.x86_64 && \
138
chmod +x /tmp/ttyd && \
0 commit comments