diff options
author | deadprogram <[email protected]> | 2021-09-01 19:54:03 +0200 |
---|---|---|
committer | Ron Evans <[email protected]> | 2021-09-02 11:18:52 +0200 |
commit | 4b1f92600f3f201923f67312aad3658fe5c06067 (patch) | |
tree | c0a1b74310c86ad3ea3bb09976a98f1739fbf3a3 /Dockerfile | |
parent | ca39bc9f355c32d6a2ed2d2b5056e7e3f8b7e58d (diff) | |
download | tinygo-4b1f92600f3f201923f67312aad3658fe5c06067.tar.gz tinygo-4b1f92600f3f201923f67312aad3658fe5c06067.zip |
docker: use go 1.17 for docker dev build
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 7e65e6583..399f74f7b 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 && \ |