From 2b4990da5a1abcfa490e31dcabb0d67ce4c5dea7 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 12 Sep 2024 14:04:50 +0200 Subject: [PATCH] feat(backend): use go 1.23 in Docker image --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index b17fe07c6..99eb7ce5c 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,7 +1,7 @@ #ARCH can be amd64 or arm64 ARG ARCH=amd64 -FROM --platform=linux/$ARCH golang:1.21-alpine AS build +FROM --platform=linux/$ARCH golang:1.23-alpine AS build RUN apk add --no-cache --repository=https://dl-cdn.alpinelinux.org/alpine/edge/community git openssh openssl-dev pkgconf gcc g++ make libc-dev bash librdkafka-dev cyrus-sasl cyrus-sasl-gssapiv2 krb5; WORKDIR /root