1
0
Fork 0

Update certificates for some Docker images

This commit is contained in:
Ludovic Fernandez 2019-04-01 16:48:08 +02:00 committed by Traefiker Bot
parent da20db862d
commit 51a0994d2d
3 changed files with 449 additions and 523 deletions

View file

@ -1,8 +1,9 @@
FROM golang:1.12-alpine
RUN apk --update upgrade \
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar \
&& rm -rf /var/cache/apk/*
&& 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/*
# Download golangci-lint and misspell binary to bin folder in $GOPATH
RUN curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | bash -s -- -b $GOPATH/bin v1.15.0 \