From 99d13843b018c9f09e56334d10b106ba441aa9e4 Mon Sep 17 00:00:00 2001 From: valentinkolb Date: Mon, 22 Apr 2024 22:01:02 +0200 Subject: [PATCH] feat(project): Updated Go Version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 862670f..8ea9c4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Start from the official Go image to create a build artifact. # This is the first stage of a multi-stage build. -FROM golang:1.19 as builder +FROM golang:1.21 as builder # Set labels LABEL maintainer="Valentin Kolb"