From 4b1f92600f3f201923f67312aad3658fe5c06067 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Wed, 1 Sep 2021 19:54:03 +0200 Subject: [PATCH] docker: use go 1.17 for docker dev build Signed-off-by: deadprogram --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7e65e658..399f74f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# TinyGo base stage installs the most recent Go 1.16.x, LLVM 11 and the TinyGo compiler itself. -FROM golang:1.16 AS tinygo-base +# TinyGo base stage installs the most recent Go 1.17.x, LLVM 11 and the TinyGo compiler itself. +FROM golang:1.17 AS tinygo-base RUN wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - && \ echo "deb http://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-11 main" >> /etc/apt/sources.list && \