2021-08-17 18:20:12 +03:00
FROM golang:1.17-alpine
2016-02-19 14:58:06 +03:00
2017-08-25 22:32:03 +03:00
RUN apk --update upgrade \
2019-04-01 17:48:08 +03:00
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar ca-certificates tzdata \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
2017-02-02 02:49:32 +03:00
2015-09-27 16:56:53 +03:00
# Which docker version to test on
2019-07-12 22:14:03 +03:00
ARG DOCKER_VERSION = 18 .09.7
2019-08-11 13:20:53 +03:00
# Download docker
RUN mkdir -p /usr/local/bin \
&& curl -fL https://download.docker.com/linux/static/stable/x86_64/docker-${ DOCKER_VERSION } .tgz \
| tar -xzC /usr/local/bin --transform 's#^.+/##x'
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
2019-08-11 13:20:53 +03:00
# Download golangci-lint binary to bin folder in $GOPATH
2021-12-23 17:44:05 +03:00
RUN curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | bash -s -- -b $GOPATH /bin v1.43.0
2018-01-09 23:46:04 +03:00
2020-03-04 02:56:04 +03:00
# Download misspell binary to bin folder in $GOPATH
RUN curl -sfL https://raw.githubusercontent.com/client9/misspell/master/install-misspell.sh | bash -s -- -b $GOPATH /bin v0.3.4
2019-08-11 13:20:53 +03:00
# Download goreleaser binary to bin folder in $GOPATH
2021-12-22 16:12:04 +03:00
RUN curl -sfL https://gist.githubusercontent.com/traefiker/6d7ac019c11d011e4f131bb2cca8900e/raw/goreleaser.sh | sh
2015-09-27 16:56:53 +03:00
2020-09-16 16:46:04 +03:00
WORKDIR /go/src/github.com/traefik/traefik
2019-08-11 13:20:53 +03:00
# Download go modules
COPY go.mod .
COPY go.sum .
RUN GO111MODULE = on GOPROXY = https://proxy.golang.org go mod download
2020-09-16 16:46:04 +03:00
COPY . /go/src/github.com/traefik/traefik