diff options
author | Jaden Weiss <[email protected]> | 2019-09-22 12:31:05 -0400 |
---|---|---|
committer | Ayke van Laethem <[email protected]> | 2019-09-24 16:13:26 +0200 |
commit | 17ef7a5c3277c19225395f10528e2f9516fa6939 (patch) | |
tree | 244c5601a028c5d0bebb1a2858e917571e5e804f /Dockerfile | |
parent | 6c9e55bd06181ee966047d45c963bbfca3e5279f (diff) | |
download | tinygo-17ef7a5c3277c19225395f10528e2f9516fa6939.tar.gz tinygo-17ef7a5c3277c19225395f10528e2f9516fa6939.zip |
all: add support for go 1.13
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile index 0d3065b90..95537ca5c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -# TinyGo base stage installs Go 1.12, LLVM 8 and the TinyGo compiler itself. -FROM golang:1.12 AS tinygo-base +# TinyGo base stage installs Go 1.13, LLVM 8 and the TinyGo compiler itself. +FROM golang:1.13 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-8 main" >> /etc/apt/sources.list && \ |