diff options
author | Ron Evans <[email protected]> | 2020-11-13 03:07:35 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-13 03:07:35 +0100 |
commit | ce57a034c3f84c657091b78890fcbaad33711e21 (patch) | |
tree | ebf86344ea3fa696e88ffe6eb4998d3049c800b9 /Dockerfile | |
parent | 30bee3afef20f0bea99052f6dc22da5423080b89 (diff) | |
download | tinygo-ce57a034c3f84c657091b78890fcbaad33711e21.tar.gz tinygo-ce57a034c3f84c657091b78890fcbaad33711e21.zip |
ci: update CircleCI, Azure, and Docker builds to Go 1.15
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 8be2d4d7d..29b9a428b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# TinyGo base stage installs Go 1.14, LLVM 10 and the TinyGo compiler itself. -FROM golang:1.14 AS tinygo-base +# TinyGo base stage installs the most recent Go 1.15.x, LLVM 10 and the TinyGo compiler itself. +FROM golang:1.15 AS tinygo-base RUN wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - && \ echo "deb http://apt.llvm.org/buster/ llvm-toolchain-buster-10 main" >> /etc/apt/sources.list && \ |