Compare commits

...

2 Commits

Author SHA1 Message Date
Anton Zadvorny e68f9644b4 Set GOPRIVATE environment variable
continuous-integration/drone/push Build is failing Details
2021-11-15 16:34:03 +03:00
Anton Zadvorny 88c1827855 golang 1.17 2021-11-15 16:32:45 +03:00
1 changed files with 4 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.16-alpine
FROM golang:1.17-alpine
ENV TZ=Europe/Moscow
ENV TERM=xterm-color
@ -7,9 +7,10 @@ ENV CGO_ENABLED=0
ENV GOOS=linux
ENV GOARCH=amd64
ENV GO111MODULE=on
ENV GOPRIVATE=go.pkg.cx
ENV GOLANGCI=1.39.0
ENV GOSWAG=1.7.0
ENV GOLANGCI=1.43.0
ENV GOSWAG=1.7.4
RUN \
apk add --no-cache --update bash curl git tzdata && \