2017-03-08 15:12:25 +01:00
FROM golang:1.8
2016-02-19 12:58:06 +01:00
2017-02-02 00:49:32 +01:00
# Install a more recent version of mercurial to avoid mismatching results
# between glide run on a decently updated host system and the build container.
RUN awk '$1 ~ "^deb" { $3 = $3 "-backports"; print; exit }' /etc/apt/sources.list > /etc/apt/sources.list.d/backports.list && \
DEBIAN_FRONTEND = noninteractive apt-get update && \
DEBIAN_FRONTEND = noninteractive apt-get install -t jessie-backports --yes --no-install-recommends mercurial = 3.9.1-1~bpo8+1 && \
rm -fr /var/lib/apt/lists/
2017-02-02 10:58:42 +01:00
RUN go get github.com/jteeuwen/go-bindata/... \
2016-03-22 01:32:02 +01:00
&& go get github.com/golang/lint/golint \
2016-11-16 09:12:49 +00:00
&& go get github.com/kisielk/errcheck \
2017-02-05 16:42:04 +01:00
&& go get github.com/client9/misspell/cmd/misspell \
2017-02-02 00:49:32 +01:00
&& go get github.com/mattfarina/glide-hash \
&& go get github.com/sgotti/glide-vc
2015-09-22 11:29:41 +02:00
2015-09-27 15:56:53 +02:00
# Which docker version to test on
2017-02-03 09:15:56 +01:00
ARG DOCKER_VERSION = 1 .10.3
2017-02-02 10:58:42 +01:00
# Which glide version to test on
ARG GLIDE_VERSION = v0.12.3
# Download glide
RUN mkdir -p /usr/local/bin \
2017-02-03 09:15:56 +01:00
&& curl -fL https://github.com/Masterminds/glide/releases/download/${ GLIDE_VERSION } /glide-${ GLIDE_VERSION } -linux-amd64.tar.gz \
2017-02-02 10:58:42 +01:00
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
2015-10-13 20:19:34 +02:00
2015-09-27 15:56:53 +02:00
# Download docker
2016-11-14 17:41:12 +01:00
RUN mkdir -p /usr/local/bin \
2017-02-03 09:15:56 +01:00
&& curl -fL https://get.docker.com/builds/Linux/x86_64/docker-${ DOCKER_VERSION } .tgz \
2016-11-14 17:41:12 +01:00
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
2015-09-27 15:56:53 +02:00
2016-02-24 16:43:39 +01:00
WORKDIR /go/src/github.com/containous/traefik
2016-07-20 12:19:58 +02:00
COPY . /go/src/github.com/containous/traefik