Update dockerfile to use go 1.23

This commit is contained in:
TraceEntertains 2025-02-20 18:09:48 -05:00
parent 33c0090de7
commit 616a2a1978

View File

@ -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}