diff --git a/fastfetch/Dockerfile b/fastfetch/Dockerfile index 7f7f101..5dfdbd5 100644 --- a/fastfetch/Dockerfile +++ b/fastfetch/Dockerfile @@ -1,19 +1,17 @@ -FROM ubuntu:22.04 +FROM alpine:latest -# Install required packages and add the PPA for fastfetch -RUN apt-get update && \ - apt-get install -y software-properties-common && \ - add-apt-repository ppa:zhangsongcui3371/fastfetch && \ - apt-get update && \ - apt-get install -y \ +# Install required packages +RUN apk update && \ + apk add --no-cache \ + bash \ procps \ curl \ iproute2 \ git \ - golang-go \ + go \ vim \ fastfetch \ - && apt-get clean + && rm -rf /var/cache/apk/* # Clone, build, and install gotty RUN git clone https://github.com/sorenisanerd/gotty.git /tmp/gotty && \ @@ -29,5 +27,5 @@ ENV LANG C.UTF-8 # Expose the port gotty will run on EXPOSE 7681 -# Start gotty and run ncdu with the specified path +# Start gotty and run fastfetch CMD ["gotty", "-p", "7681", "-w", "fastfetch"] diff --git a/fastfetch/VERSION b/fastfetch/VERSION index 8acdd82..4e379d2 100644 --- a/fastfetch/VERSION +++ b/fastfetch/VERSION @@ -1 +1 @@ -0.0.1 +0.0.2 diff --git a/fastfetch/docker-compose.yml b/fastfetch/docker-compose.yml index 0fe997c..5d522f0 100644 --- a/fastfetch/docker-compose.yml +++ b/fastfetch/docker-compose.yml @@ -1,5 +1,3 @@ -version: "3.8" # Specify the version of the Docker Compose file format - services: # Define the service named 'big-bear-fastfetch' big-bear-fastfetch: