From 258b680bc561a2ec4e29b9afbf511b0d0d65a902 Mon Sep 17 00:00:00 2001 From: Sean Klein Date: Wed, 11 Nov 2020 09:14:17 -0500 Subject: [PATCH] Patch docker to use valid Go version As documented in the README, tailscale only build with the latest Go version (Go 1.15). As a result, a handful of undefined errors would pop up using an older verison. This patch updates the base image to 1.15, allowing "docker build" to function correctly once more. Signed-off-by: Sean Klein --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 32456eb9c..18925075c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,7 +21,7 @@ # $ docker exec tailscaled tailscale status -FROM golang:1.14-alpine AS build-env +FROM golang:1.15-alpine AS build-env WORKDIR /go/src/tailscale