traefik/build.Dockerfile

28 lines
961 B
Text
Raw Normal View History

2018-02-19 13:40:03 +01:00
FROM golang:1.10-alpine
2017-08-25 21:32:03 +02:00
RUN apk --update upgrade \
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar \
&& rm -rf /var/cache/apk/*
2018-02-07 12:40:03 +01:00
RUN go get github.com/containous/go-bindata/... \
&& go get github.com/golang/lint/golint \
2016-11-16 09:12:49 +00:00
&& go get github.com/kisielk/errcheck \
2018-01-09 21:46:04 +01:00
&& go get github.com/client9/misspell/cmd/misspell
# Which docker version to test on
ARG DOCKER_VERSION=17.03.2
2018-02-07 23:30:05 +01:00
ARG DEP_VERSION=0.4.1
2018-01-09 21:46:04 +01:00
# Download dep binary to bin folder in $GOPATH
RUN mkdir -p /usr/local/bin \
2018-01-09 21:46:04 +01:00
&& curl -fsSL -o /usr/local/bin/dep https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 \
&& chmod +x /usr/local/bin/dep
# Download docker
2016-11-14 17:41:12 +01:00
RUN mkdir -p /usr/local/bin \
&& curl -fL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}-ce.tgz \
2016-11-14 17:41:12 +01:00
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
WORKDIR /go/src/github.com/containous/traefik
COPY . /go/src/github.com/containous/traefik