Merge pull request #978 from proton-ab/patch-1

Build docker images using Go 1.14
This commit is contained in:
Aleksandr Razumov 2020-03-04 06:40:19 +03:00 committed by GitHub
commit 43c43892c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.13
FROM golang:1.14
# don't place it into $GOPATH/bin because Drone mounts $GOPATH as volume
COPY golangci-lint /usr/bin/

View File

@ -1,4 +1,4 @@
FROM golang:1.13-alpine
FROM golang:1.14-alpine
# gcc is required to support cgo;
# git and mercurial are needed most times for go get`, etc.