We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b8bc138 + 8ed96ee commit 10182e4Copy full SHA for 10182e4
containers/Rocky.Dockerfile
@@ -21,8 +21,14 @@ RUN dnf -y install util-linux-user &&\
21
# Install Oh My ZSH
22
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
23
24
+RUN dnf -y install wget
25
+
26
# Install EZA https://github.com/eza-community/eza
-RUN dnf -y install eza
27
+# RUN dnf -y install eza
28
+RUN wget -c https://github.com/eza-community/eza/releases/latest/download/eza_x86_64-unknown-linux-gnu.tar.gz -O - | tar xz &&\
29
+ chmod +x eza &&\
30
+ chown root:root eza &&\
31
+ mv eza /usr/local/bin/eza
32
33
# Install BAT https://github.com/sharkdp/bat
34
RUN dnf -y install bat
0 commit comments