c9e78c4f4a
* Fix Docker version specifier. - The download URL[1] does not contain a leading 'v'. - The major version is 1. [1] https://github.com/docker/docker/releases/tag/v1.10.3 * Drop -S and and -f in build.Dockerfile curl commands. - `-f` (`--fail`) turns HTTP error response codes into a non-zero exit code, making curl fail early and properly. While the documentation mentions that there is supposed to be no output, we do see an error message. - `-S` (`--show-error`) is only meaningful when used together with `-s` (`--silent`). We do not want to go silent but see the progress bar though.
35 lines
1 KiB
Docker
35 lines
1 KiB
Docker
FROM golang:1.7
|
|
|
|
RUN go get github.com/jteeuwen/go-bindata/... \
|
|
&& go get github.com/golang/lint/golint \
|
|
&& go get github.com/kisielk/errcheck \
|
|
&& go get github.com/client9/misspell/cmd/misspell
|
|
|
|
# Which docker version to test on
|
|
ARG DOCKER_VERSION=1.10.3
|
|
|
|
|
|
# Which glide version to test on
|
|
ARG GLIDE_VERSION=v0.12.3
|
|
|
|
# Download glide
|
|
RUN mkdir -p /usr/local/bin \
|
|
&& curl -fL https://github.com/Masterminds/glide/releases/download/${GLIDE_VERSION}/glide-${GLIDE_VERSION}-linux-amd64.tar.gz \
|
|
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
|
|
|
|
# Download docker
|
|
RUN mkdir -p /usr/local/bin \
|
|
&& curl -fL 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
|
|
|
|
COPY glide.yaml glide.yaml
|
|
COPY glide.lock glide.lock
|
|
RUN glide install -v
|
|
|
|
COPY integration/glide.yaml integration/glide.yaml
|
|
COPY integration/glide.lock integration/glide.lock
|
|
RUN cd integration && glide install
|
|
|
|
COPY . /go/src/github.com/containous/traefik
|