From 2a5ced81593e22e5939fd0fb7e4909de40cb7252 Mon Sep 17 00:00:00 2001 From: Spencer Comfort <109806759+GiddyGoatGaming@users.noreply.github.com> Date: Sun, 29 Jan 2023 13:29:24 -0500 Subject: [PATCH] Dockerfile: go 1.19.5 (#77) Updates go from 1.17.5 to 1.19.5 in the dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 25b2255..fe62f00 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,7 +36,7 @@ ENV ANDROID_SDK_ROOT /build/android-sdk # We need some version of Go new enough to support the "embed" package # to run "go run tailscale.com/cmd/printdep" to figure out which Tailscale Go # version we need later, but otherwise this toolchain isn't used: -RUN curl -L https://go.dev/dl/go1.17.5.linux-amd64.tar.gz | tar -C /usr/local -zxv +RUN curl -L https://go.dev/dl/go1.19.5.linux-amd64.tar.gz | tar -C /usr/local -zxv RUN ln -s /usr/local/go/bin/go /usr/bin RUN mkdir -p $HOME/tailscale-android