Add ubuntu, debian, and alpine neofetches

This commit is contained in:
9pfs 2024-04-07 10:56:53 -07:00
parent d4f845dc4c
commit e1dfb90651
Signed by: 9pfs
SSH key fingerprint: SHA256:TOcGxMQCfy4VvRM8AzgXErKXdkAtaTcpGXgYMpyoJoY
4 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,3 @@
FROM alpine:latest
RUN apk update && apk upgrade && apk add neofetch
CMD neofetch

View file

@ -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

17
docker-compose.yml Normal file
View file

@ -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

View file

@ -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