From e1dfb90651eec3588f9d0376a36cabd529a10fd9 Mon Sep 17 00:00:00 2001 From: 9pfs <9pfs@amcforum.wiki> Date: Sun, 7 Apr 2024 10:56:53 -0700 Subject: [PATCH] Add ubuntu, debian, and alpine neofetches --- alpine-neofetch/Dockerfile | 3 +++ debian-neofetch/Dockerfile | 3 +++ docker-compose.yml | 17 +++++++++++++++++ ubuntu-neofetch/Dockerfile | 3 +++ 4 files changed, 26 insertions(+) create mode 100644 alpine-neofetch/Dockerfile create mode 100644 debian-neofetch/Dockerfile create mode 100644 docker-compose.yml create mode 100644 ubuntu-neofetch/Dockerfile diff --git a/alpine-neofetch/Dockerfile b/alpine-neofetch/Dockerfile new file mode 100644 index 0000000..ee4ba66 --- /dev/null +++ b/alpine-neofetch/Dockerfile @@ -0,0 +1,3 @@ +FROM alpine:latest +RUN apk update && apk upgrade && apk add neofetch +CMD neofetch diff --git a/debian-neofetch/Dockerfile b/debian-neofetch/Dockerfile new file mode 100644 index 0000000..ff1afbf --- /dev/null +++ b/debian-neofetch/Dockerfile @@ -0,0 +1,3 @@ +FROM debian:latest +RUN apt-get update && apt-get upgrade -y && apt-get install -y neofetch && rm -rf /var/lib/apt +CMD neofetch diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..26eefa8 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,17 @@ +# version: '3.9' +services: + alpine_neofetch: + build: + context: alpine-neofetch + container_name: alpine-neofetch + image: git.h.hackclub.app/9pfs/alpine-neofetch + debian_neofetch: + build: + context: debian-neofetch + container_name: debian-neofetch + image: git.h.hackclub.app/9pfs/debian-neofetch + ubuntu_neofetch: + build: + context: ubuntu-neofetch + container_name: ubuntu-neofetch + image: git.h.hackclub.app/9pfs/ubuntu-neofetch diff --git a/ubuntu-neofetch/Dockerfile b/ubuntu-neofetch/Dockerfile new file mode 100644 index 0000000..7506b5e --- /dev/null +++ b/ubuntu-neofetch/Dockerfile @@ -0,0 +1,3 @@ +FROM ubuntu:latest +RUN apt-get update && apt-get upgrade -y && apt-get install -y neofetch && rm -rf /var/lib/apt +CMD neofetch