From f58acabe9febcce75a176dff8b06363a90007af7 Mon Sep 17 00:00:00 2001 From: Fumihiro Ito Date: Tue, 2 Oct 2018 23:29:32 +0900 Subject: [PATCH] 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. --- Dockerfile | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83c02f70f..9fe6d0809 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/README.md b/README.md index b1382c96b..5a9834684 100644 --- a/README.md +++ b/README.md @@ -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`