Merge pull request #1179 from aanand/test-1.6-rc

Add Docker 1.6 RC2 to tested versions
This commit is contained in:
Ben Firshman 2015-03-26 14:18:36 +00:00
commit baf18decae
1 changed files with 5 additions and 3 deletions

View File

@ -15,13 +15,15 @@ RUN set -ex; \
; \
rm -rf /var/lib/apt/lists/*
ENV ALL_DOCKER_VERSIONS 1.3.3 1.4.1 1.5.0
ENV ALL_DOCKER_VERSIONS 1.3.3 1.4.1 1.5.0 1.6.0-rc2
RUN set -ex; \
for v in ${ALL_DOCKER_VERSIONS}; do \
for v in 1.3.3 1.4.1 1.5.0; do \
curl https://get.docker.com/builds/Linux/x86_64/docker-$v -o /usr/local/bin/docker-$v; \
chmod +x /usr/local/bin/docker-$v; \
done
done; \
curl https://test.docker.com/builds/Linux/x86_64/docker-1.6.0-rc2 -o /usr/local/bin/docker-1.6.0-rc2; \
chmod +x /usr/local/bin/docker-1.6.0-rc2
RUN useradd -d /home/user -m -s /bin/bash user
WORKDIR /code/