From 616a2a19786005b4e88aafeee89cf38e45d88aa5 Mon Sep 17 00:00:00 2001 From: TraceEntertains Date: Thu, 20 Feb 2025 18:09:48 -0500 Subject: [PATCH] Update dockerfile to use go 1.23 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2a929a4..ba67e01 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG app_dir="/home/go/app" # * Building the application -FROM golang:1.22-alpine3.20 AS build +FROM golang:1.23-alpine3.20 AS build ARG app_dir WORKDIR ${app_dir}