diff options
author | deadprogram <[email protected]> | 2024-02-27 10:11:42 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-02-27 11:57:37 +0100 |
commit | c8f77d26a872cf9686b06a7a7ce3b7c4f2292363 (patch) | |
tree | 06e1646762a2d802e0f21ee60ebd1acd4babf43c /Dockerfile | |
parent | 8eaa9bd8d0d7c1f79906e270d1a79bacb03c3205 (diff) | |
download | tinygo-c8f77d26a872cf9686b06a7a7ce3b7c4f2292363.tar.gz tinygo-c8f77d26a872cf9686b06a7a7ce3b7c4f2292363.zip |
docker: update final build stage to go1.22
Signed-off-by: deadprogram <[email protected]>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 3da26425d..d54719e25 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN cd /tinygo/ && \ # tinygo-compiler copies the compiler build over to a base Go container (without # all the build tools etc). -FROM golang:1.21 AS tinygo-compiler +FROM golang:1.22 AS tinygo-compiler # Copy tinygo build. COPY --from=tinygo-compiler-build /tinygo/build/release/tinygo /tinygo |