From 0fd4776abde8476a5616f6b73913b4ad169d9484 Mon Sep 17 00:00:00 2001 From: EclesioMeloJunior Date: Thu, 5 Oct 2023 07:59:26 -0400 Subject: [PATCH] chore: upgrade golang version in docker file --- Dockerfile | 2 +- Dockerfile.staging | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 98337d96501..97cd6295799 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG DEBIAN_VERSION=bullseye-slim -ARG GO_VERSION=1.20-buster +ARG GO_VERSION=1.21.1-bullseye FROM golang:${GO_VERSION} AS builder diff --git a/Dockerfile.staging b/Dockerfile.staging index 50b6821e494..787478567b4 100644 --- a/Dockerfile.staging +++ b/Dockerfile.staging @@ -21,4 +21,4 @@ RUN go install -trimpath github.com/ChainSafe/gossamer/cmd/gossamer RUN ["sh", "-c", "gossamer init --chain=${chain} --base-path=${basepath}/${chain}"] ENTRYPOINT ["sh", "-c", "service datadog-agent start && gossamer --chain=${chain} --base-path=${basepath}/${chain} --prometheus-external --prometheus-port=9876 --pprof.enabled --pprof.listening-address=\":6060\""] -EXPOSE 7001 8546 8540 9876 6060 \ No newline at end of file +EXPOSE 7001 8546 8540 9876 6060