8 lines
221 B
Docker
8 lines
221 B
Docker
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
|
|
|