diff options
author | Elliott Sales de Andrade <[email protected]> | 2020-02-11 17:23:42 -0500 |
---|---|---|
committer | Ron Evans <[email protected]> | 2020-04-12 18:41:34 +0200 |
commit | 0a8bfc57efa5fa9b64317233ad3666a0e955f0d2 (patch) | |
tree | 30f9d6f91aee75543ad1b6ca1574e2eaae437e6d /Dockerfile | |
parent | 5674c35e1477e21eaafab3a51241d84e47a679dd (diff) | |
download | tinygo-0a8bfc57efa5fa9b64317233ad3666a0e955f0d2.tar.gz tinygo-0a8bfc57efa5fa9b64317233ad3666a0e955f0d2.zip |
all: support Go 1.14
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 4632c4fb2..6d958125e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# TinyGo base stage installs Go 1.13, LLVM 10 and the TinyGo compiler itself. -FROM golang:1.13 AS tinygo-base +# TinyGo base stage installs Go 1.14, LLVM 10 and the TinyGo compiler itself. +FROM golang:1.14 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 && \ |