From 87596508a171ec3a5ef67c495aec19e3eb33e595 Mon Sep 17 00:00:00 2001 From: Will Skates <136816+WillSkates@users.noreply.github.com> Date: Sun, 29 Mar 2026 19:46:03 +0100 Subject: [PATCH] Updating go and alpine. --- Dockerfile | 4 ++-- Dockerfile.goreleaser | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c75156532..dc7bd53f4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM golang:1.24.4-alpine3.21 AS builder +FROM golang:1.26.1-alpine3.23 AS builder WORKDIR /app COPY . /app RUN CGO_ENABLED=0 go build . -FROM alpine:3.21 +FROM alpine:3.23 WORKDIR /app COPY --from=builder /app/glance . diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index 244b17789..cc9ed2608 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -1,4 +1,4 @@ -FROM alpine:3.21 +FROM alpine:3.23 WORKDIR /app COPY glance .