Go v1.12 (#69)

This commit is contained in:
Adrian Macneil 2019-05-19 18:52:45 -07:00 committed by GitHub
parent 7ac46ff0f3
commit e4d490aa7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
# build image
FROM golang:1.11 as build
FROM golang:1.12 as build
# required to force cgo (for sqlite driver) with cross compile
ENV CGO_ENABLED 1
@ -14,7 +14,7 @@ RUN apt-get update \
# development dependencies
RUN curl -fsSL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh \
| sh -s v1.12.3
| sh -s v1.16.0
# copy source files
COPY . /src