mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-11-01 00:40:41 +00:00
16 lines
546 B
Docker
16 lines
546 B
Docker
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"]
|