1
0
Fork 0

Use deployment primitives from travis

This commit is contained in:
Guilhem Lettron 2016-11-14 17:41:12 +01:00
parent 68bd24d065
commit 8e4c4f8407
7 changed files with 84 additions and 95 deletions

View file

@ -10,12 +10,9 @@ RUN go get github.com/Masterminds/glide \
ARG DOCKER_VERSION=1.10.1
# Download docker
RUN set -ex; \
curl https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_VERSION} -o /usr/local/bin/docker-${DOCKER_VERSION}; \
chmod +x /usr/local/bin/docker-${DOCKER_VERSION}
# Set the default Docker to be run
RUN ln -s /usr/local/bin/docker-${DOCKER_VERSION} /usr/local/bin/docker
RUN mkdir -p /usr/local/bin \
&& curl -SL https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_VERSION}.tgz \
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
WORKDIR /go/src/github.com/containous/traefik