From 494697b7cd260beefaf1e41b0cd2d971d500f7cb Mon Sep 17 00:00:00 2001 From: Dennis Trautwein Date: Fri, 18 Oct 2024 17:06:53 +0200 Subject: [PATCH] fix: go version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c2aa1ae2..ea6cdb31 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # We use the -alpine build image to build Nebula agains musl because we need # CGO to be enabled and I'd like use an alpine base image for the final image. -FROM golang:1.19-alpine AS builder +FROM golang:1.23-alpine AS builder # Switch to an isolated build directory WORKDIR /build