2019-03-01 13:48:04 +03:00
FROM golang:1.12-alpine
2016-02-19 14:58:06 +03:00
2017-08-25 22:32:03 +03:00
RUN apk --update upgrade \
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar \
&& rm -rf /var/cache/apk/*
2017-02-02 02:49:32 +03:00
2019-03-14 18:22:04 +03:00
# Download golangci-lint and misspell binary to bin folder in $GOPATH
2019-03-04 18:40:05 +03:00
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH /bin v1.15.0 \
&& go get github.com/client9/misspell/cmd/misspell
2015-09-22 12:29:41 +03:00
2019-03-14 18:22:04 +03:00
# Download goreleaser binary to bin folder in $GOPATH
RUN curl -sfL https://install.goreleaser.com/github.com/goreleaser/goreleaser.sh | sh
2015-09-27 16:56:53 +03:00
# Which docker version to test on
2017-07-03 11:49:31 +03:00
ARG DOCKER_VERSION = 17 .03.2
2019-01-07 18:48:03 +03:00
ARG DEP_VERSION = 0 .5.0
2017-02-02 12:58:42 +03:00
2018-12-14 06:42:03 +03:00
# Download go-bindata binary to bin folder in $GOPATH
RUN mkdir -p /usr/local/bin \
&& curl -fsSL -o /usr/local/bin/go-bindata https://github.com/containous/go-bindata/releases/download/v1.0.0/go-bindata \
&& chmod +x /usr/local/bin/go-bindata
2018-01-09 23:46:04 +03:00
# Download dep binary to bin folder in $GOPATH
2017-02-02 12:58:42 +03:00
RUN mkdir -p /usr/local/bin \
2018-01-09 23:46:04 +03: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
2015-09-27 16:56:53 +03:00
# Download docker
2016-11-14 19:41:12 +03:00
RUN mkdir -p /usr/local/bin \
2017-07-03 11:49:31 +03:00
&& curl -fL https://download.docker.com/linux/static/stable/x86_64/docker-${ DOCKER_VERSION } -ce.tgz \
2016-11-14 19:41:12 +03:00
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
2015-09-27 16:56:53 +03:00
2016-02-24 18:43:39 +03:00
WORKDIR /go/src/github.com/containous/traefik
2016-07-20 13:19:58 +03:00
COPY . /go/src/github.com/containous/traefik