From 5b2c11fa0198c778ae6825390d863fa0069566d2 Mon Sep 17 00:00:00 2001 From: Viktor Torstensson Date: Tue, 9 Dec 2025 12:23:20 +0100 Subject: [PATCH] build: use Go 1.25.5 in Dockerfile-wasm As the wasm-client has to golang version set to 1.25.5, we also need to use the same golang version in Dockerfile which builds the wasm-client. --- Dockerfile-wasm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile-wasm b/Dockerfile-wasm index 2aeed87..9e8aa41 100644 --- a/Dockerfile-wasm +++ b/Dockerfile-wasm @@ -1,5 +1,5 @@ -#Get golang 1.24.9 as a base image -FROM golang:1.24.9 as builder +#Get golang 1.25.5 as a base image +FROM golang:1.25.5 as builder #Define the working directory in the container WORKDIR /app