From 5fbec277943577f2bc855e3103c1bcec33e33356 Mon Sep 17 00:00:00 2001 From: Nicolay Doytchev Date: Sun, 12 Jan 2025 00:30:25 -0500 Subject: [PATCH] Update golang toolchain to resolve build error - Error "/build/proton-bridge/go.mod:5: unknown directive: toolchain" seems to be caused by outdated toolchain. - Bumped toolchain to match what's in go.mod. --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 1971c40..0991eab 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,5 +1,5 @@ # Use carlosedp/golang for riscv64 support -FROM carlosedp/golang:1.18 AS build +FROM golang:1.21 AS build # Install dependencies RUN apt-get update && apt-get install -y git build-essential libsecret-1-dev