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 <seanmarionklein@gmail.com>
pull/916/head
Sean Klein 4 years ago committed by Brad Fitzpatrick
parent 563d43b2a5
commit 258b680bc5

@ -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

Loading…
Cancel
Save