mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 01:47:53 +08:00
Build: Minimum Go version is now 1.10 (#409)
Can not build by go version under 1.9. because using the strings.Builder by library.
This commit is contained in:
parent
36228949e9
commit
f58acabe9f
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM golang:1.9-alpine AS build-env
|
||||
FROM golang:1.10-alpine AS build-env
|
||||
WORKDIR /go/src/github.com/StackExchange/dnscontrol
|
||||
ADD . .
|
||||
RUN apk update && apk add git
|
||||
|
|
|
@ -96,7 +96,7 @@ Writing new plugins is very easy.
|
|||
|
||||
## From source
|
||||
|
||||
DNSControl can be built with Go version 1.7 or higher. To install, simply run
|
||||
DNSControl can be built with Go version 1.10 or higher. To install, simply run
|
||||
|
||||
`go get github.com/StackExchange/dnscontrol`
|
||||
|
||||
|
|
Loading…
Reference in a new issue