2023-02-23 15:06:05 +01:00
FROM golang:1.20-alpine
2016-02-19 12:58:06 +01:00
2022-03-03 15:42:08 +01:00
RUN apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar ca-certificates tzdata \
2019-04-01 16:48:08 +02:00
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
2017-02-02 00:49:32 +01:00
2015-09-27 15:56:53 +02:00
# Which docker version to test on
2019-07-12 21:14:03 +02:00
ARG DOCKER_VERSION = 18 .09.7
2019-08-11 12:20:53 +02: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 10:58:42 +01:00
2019-08-11 12:20:53 +02:00
# Download golangci-lint binary to bin folder in $GOPATH
2023-04-03 10:06:06 +02:00
RUN curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | bash -s -- -b $GOPATH /bin v1.52.2
2018-01-09 21:46:04 +01:00
2020-03-04 00:56:04 +01:00
# Download misspell binary to bin folder in $GOPATH
2022-10-11 18:18:09 +02:00
RUN curl -sfL https://raw.githubusercontent.com/golangci/misspell/master/install-misspell.sh | bash -s -- -b $GOPATH /bin v0.4.0
2019-08-11 12:20:53 +02:00
# Download goreleaser binary to bin folder in $GOPATH
2021-12-22 14:12:04 +01:00
RUN curl -sfL https://gist.githubusercontent.com/traefiker/6d7ac019c11d011e4f131bb2cca8900e/raw/goreleaser.sh | sh
2015-09-27 15:56:53 +02:00
2020-09-16 15:46:04 +02:00
WORKDIR /go/src/github.com/traefik/traefik
2019-08-11 12:20:53 +02:00
2022-04-15 11:56:08 +02:00
# Because of CVE-2022-24765 (https://github.blog/2022-04-12-git-security-vulnerability-announced/),
# we configure git to allow the Traefik codebase path on the Host for docker in docker usages.
ARG HOST_PWD = ""
RUN git config --global --add safe.directory " ${ HOST_PWD } "
2019-08-11 12:20:53 +02:00
# Download go modules
COPY go.mod .
COPY go.sum .
RUN GO111MODULE = on GOPROXY = https://proxy.golang.org go mod download
2020-09-16 15:46:04 +02:00
COPY . /go/src/github.com/traefik/traefik