diff --git a/docker/Dockerfile b/docker/Dockerfile index b65e94f..b374679 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -205,6 +205,15 @@ RUN apt-get update -qq && \ make all && \ make install +# Install fastfetch +RUN git clone https://github.com/fastfetch-cli/fastfetch /opt/fastfetch && \ + cd /opt/fastfetch && \ + mkdir build && \ + cd build && \ + cmake .. && \ + cmake --build . --target fastfetch --target flashfetch && \ + install fastfetch /usr/local/bin + # Install gotop RUN git clone --depth 1 https://github.com/xxxserxxx/gotop /opt/gotop && \ cd /opt/gotop && \