From b26f33e397dbf097641265b922ce914a18a6e8e4 Mon Sep 17 00:00:00 2001 From: Ash Logan Date: Sun, 19 Oct 2025 20:10:02 +1100 Subject: [PATCH] chore: bump golang version --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 28e40ed..71bb133 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG app_dir="/home/go/app" # * Building the application -FROM golang:1.23-alpine3.20 AS build +FROM golang:1.25-alpine3.22 AS build ARG app_dir WORKDIR ${app_dir} @@ -20,7 +20,7 @@ RUN --mount=type=cache,target=/go/pkg/mod/ \ # * Running the final application -FROM alpine:3.20 AS final +FROM alpine:3.22 AS final ARG app_dir WORKDIR ${app_dir}