Просмотр исходного кода

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 <[email protected]>
Sean Klein 5 лет назад
Родитель
Сommit
258b680bc5
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      Dockerfile

+ 1 - 1
Dockerfile

@@ -21,7 +21,7 @@
 #     $ docker exec tailscaled tailscale status
 #     $ 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
 WORKDIR /go/src/tailscale