Add basic README.md with an example
CI / build (push) Successful in 10s

This commit is contained in:
2026-08-26 23:34:39 +02:00
parent 6af8660f8d
commit 11d7640d3a
3 changed files with 55 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM alpine:latest
RUN mkdir -p /lib/apk/db /run
RUN apk add --no-cache --initdb linux-virt busybox util-linux
RUN cp /boot/vmlinuz-virt /vmlinuz && echo "Welcome to slim!" > /etc/motd
COPY init /init
RUN chmod +x /init