2017-03-08 14:12:25 +00:00
|
|
|
FROM golang:1.8
|
2016-02-19 11:58:06 +00:00
|
|
|
|
2017-02-01 23:49:32 +00: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 09:58:42 +00:00
|
|
|
RUN go get github.com/jteeuwen/go-bindata/... \
|
2016-03-22 00:32:02 +00: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 15:42:04 +00:00
|
|
|
&& go get github.com/client9/misspell/cmd/misspell \
|
2017-02-01 23:49:32 +00:00
|
|
|
&& go get github.com/mattfarina/glide-hash \
|
|
|
|
&& go get github.com/sgotti/glide-vc
|
2015-09-22 09:29:41 +00:00
|
|
|
|
2015-09-27 13:56:53 +00:00
|
|
|
# Which docker version to test on
|
2017-02-03 08:15:56 +00:00
|
|
|
ARG DOCKER_VERSION=1.10.3
|
2017-02-02 09:58:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Which glide version to test on
|
|
|
|
ARG GLIDE_VERSION=v0.12.3
|
|
|
|
|
|
|
|
# Download glide
|
|
|
|
RUN mkdir -p /usr/local/bin \
|
2017-02-03 08:15:56 +00:00
|
|
|
&& curl -fL https://github.com/Masterminds/glide/releases/download/${GLIDE_VERSION}/glide-${GLIDE_VERSION}-linux-amd64.tar.gz \
|
2017-02-02 09:58:42 +00:00
|
|
|
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
|
2015-10-13 18:19:34 +00:00
|
|
|
|
2015-09-27 13:56:53 +00:00
|
|
|
# Download docker
|
2016-11-14 16:41:12 +00:00
|
|
|
RUN mkdir -p /usr/local/bin \
|
2017-02-03 08:15:56 +00:00
|
|
|
&& curl -fL https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_VERSION}.tgz \
|
2016-11-14 16:41:12 +00:00
|
|
|
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
|
2015-09-27 13:56:53 +00:00
|
|
|
|
2016-02-24 15:43:39 +00:00
|
|
|
WORKDIR /go/src/github.com/containous/traefik
|
2016-07-20 10:19:58 +00:00
|
|
|
COPY . /go/src/github.com/containous/traefik
|