Compare commits

...

2 Commits

Author SHA1 Message Date
Anton Zadvorny ef1e92f765 Set GOPRIVATE environment variable
continuous-integration/drone/push Build is failing Details
2021-11-15 17:40:34 +03:00
Anton Zadvorny c34bbbdfaf golang 1.17 2021-11-15 17:40:34 +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.42.1
ENV GOSWAG=1.7.4
RUN \
apk add --no-cache --update bash curl git tzdata && \