From 0fbebebed9bd4ad959d0d4ccbfe520d4f04c2294 Mon Sep 17 00:00:00 2001 From: Jonathan Barrow Date: Wed, 4 Feb 2026 13:24:56 -0500 Subject: [PATCH] chore: bump Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6c4034c..164e00f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG app_dir="/home/go/app" # * Building the application -FROM golang:1.23.6-alpine AS build +FROM golang:1.25-alpine3.22 AS build ARG app_dir ARG build_string=pretendo.friends.docker @@ -21,7 +21,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}