Files
linuxkit/tools/mkimage-base/Dockerfile
Justin Cormack 9fe9e95349 Replace mkinitrd.sh with a tool to convert base image to initrd
Better split between content and tools.

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
2017-02-01 22:32:34 +00:00

13 lines
135 B
Docker

FROM alpine:3.5
RUN \
apk update && apk upgrade && \
apk add \
docker \
tar \
&& true
COPY . .
ENTRYPOINT ["/mkimage.sh"]