small Alpine Linux install with Docker as next step toward replacing boot2docker

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack
2015-12-01 15:59:10 +00:00
parent 32e3ac79a6
commit e235d035a5
6 changed files with 34 additions and 0 deletions

10
alpine/Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
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 apk add cpio
CMD ["/bin/sh"]