Bump go and alpine versions

This commit is contained in:
Svilen Markov
2026-05-30 19:42:44 +01:00
parent b1077531bf
commit 315e39d61e
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -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 .
+1 -1
View File
@@ -1,4 +1,4 @@
FROM alpine:3.21
FROM alpine:3.22
WORKDIR /app
COPY glance .
+1 -1
View File
@@ -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