diff options
author | deadprogram <[email protected]> | 2023-08-11 14:47:57 +0200 |
---|---|---|
committer | Ayke <[email protected]> | 2023-08-11 17:35:43 +0200 |
commit | 59cc7d4c424644cdc4e05e69b0744db1ec5de71e (patch) | |
tree | 5ffc12ff52679d50d00e4878812d99ae59bc896c | |
parent | ab64e215dda90243d8ae93201921b2bf7a6c9eec (diff) | |
download | tinygo-59cc7d4c424644cdc4e05e69b0744db1ec5de71e.tar.gz tinygo-59cc7d4c424644cdc4e05e69b0744db1ec5de71e.zip |
docker: use Go 1.21 for Docker dev container build
Signed-off-by: deadprogram <[email protected]>
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 2a61a221d..ad3b586d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # tinygo-llvm stage obtains the llvm source for TinyGo -FROM golang:1.20 AS tinygo-llvm +FROM golang:1.21 AS tinygo-llvm RUN apt-get update && \ apt-get install -y apt-utils make cmake clang-15 ninja-build |