From 315e39d61ec5bef2184de4e967a240ed95ac42de Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Sat, 30 May 2026 19:42:44 +0100 Subject: [PATCH] Bump go and alpine versions --- Dockerfile | 4 ++-- Dockerfile.goreleaser | 2 +- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9d4ae67..63309b9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM golang:1.24.3-alpine3.21 AS builder +FROM golang:1.26.3-alpine3.22 AS builder WORKDIR /app COPY . /app RUN CGO_ENABLED=0 go build . -FROM alpine:3.21 +FROM alpine:3.22 WORKDIR /app COPY --from=builder /app/glance . diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index 244b177..25e81be 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -1,4 +1,4 @@ -FROM alpine:3.21 +FROM alpine:3.22 WORKDIR /app COPY glance . diff --git a/go.mod b/go.mod index 5dd1e60..5e6c434 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/glanceapp/glance -go 1.24.3 +go 1.26.3 require ( github.com/fsnotify/fsnotify v1.9.0