Files
linuxkit/alpine/Dockerfile
Justin Cormack d4419dd94c link /init so kernel will boot as initramfs
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2015-12-02 11:57:48 +00:00

13 lines
247 B
Docker

FROM alpine:edge
MAINTAINER Justin Cormack <justin.cormack@unikernel.com>
COPY repositories /etc/apk/repositories
COPY motd hostname /etc/
RUN apk update && apk upgrade && apk add e2fsprogs docker
RUN ln -s /bin/busybox /init
CMD ["/bin/sh"]