add pinata modified boot2docker until replaced by real Moby

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack
2015-11-27 11:46:27 +00:00
parent 0fa1e68dc6
commit 5b99c08596
50 changed files with 6734 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
FROM boot2docker/boot2docker
MAINTAINER Sven Dowideit "SvenDowideit@docker.com"
#DESCRIPTION use the latest experimental build of Docker
#get the latest experimental docker
RUN curl -fL -o $ROOTFS/usr/local/bin/docker https://experimental.docker.com/builds/Linux/x86_64/docker-latest && \
chmod +x $ROOTFS/usr/local/bin/docker
RUN echo "" >> $ROOTFS/etc/motd
RUN echo " WARNING: this is an experimental.docker.com build, not a release." >> $ROOTFS/etc/motd
RUN echo "" >> $ROOTFS/etc/motd
RUN /make_iso.sh
CMD ["cat", "boot2docker.iso"]