From ec62f6dbac1c23511048865314140a52204677a8 Mon Sep 17 00:00:00 2001 From: shawn Date: Fri, 27 Oct 2023 08:58:35 -0700 Subject: [PATCH] update rpc Dockerfile to use go 1.21 base image (#1057) --- cmd/soroban-rpc/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/soroban-rpc/docker/Dockerfile b/cmd/soroban-rpc/docker/Dockerfile index b606619e8..6263bccb8 100644 --- a/cmd/soroban-rpc/docker/Dockerfile +++ b/cmd/soroban-rpc/docker/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20-bullseye as build +FROM golang:1.21-bullseye as build ARG RUST_TOOLCHAIN_VERSION=stable ARG REPOSITORY_VERSION