From af975d0e7f9a244c3cadea9fe604c60467f2f8ab Mon Sep 17 00:00:00 2001 From: Svilen Markov <7613769+svilenmarkov@users.noreply.github.com> Date: Mon, 5 Aug 2024 00:00:11 +0100 Subject: [PATCH] Bump versions --- Dockerfile | 2 +- Dockerfile.single-platform | 4 ++-- go.mod | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index a1c1ff4..a812eec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.20.1 +FROM alpine:3.20.2 ARG TARGETOS ARG TARGETARCH diff --git a/Dockerfile.single-platform b/Dockerfile.single-platform index 5309059..0336871 100644 --- a/Dockerfile.single-platform +++ b/Dockerfile.single-platform @@ -1,11 +1,11 @@ -FROM golang:1.22.3-alpine3.19 AS builder +FROM golang:1.22.5-alpine3.20 AS builder WORKDIR /app COPY . /app RUN CGO_ENABLED=0 go build . -FROM alpine:3.19 +FROM alpine:3.20.2 WORKDIR /app COPY --from=builder /app/glance . diff --git a/go.mod b/go.mod index 3acda17..17aa4d4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/glanceapp/glance -go 1.22.3 +go 1.22.5 require ( github.com/mmcdole/gofeed v1.3.0